zoukankan      html  css  js  c++  java
  • 零基础学python-7.7 字符串格式化方法(1)

    承接上一章节。我们这一节来说说字符串格式化的还有一种方法。就是调用format()

    >>> template='{0},{1} and {2}'
    >>> template.format ('a','b','c')
    'a,b and c'
    >>> template='{name1},{name2} and {name3}'
    >>> template.format (name1='a',name2='b',name3='c')
    'a,b and c'
    >>> template='{name1},{0} and {name2}'
    >>> template.format ('a',name1='b',name2='c')
    'b,a and c'
    >>> 

    这里依据上面的样例说明一下

    1.替换的位置能够使用下标的来标记

    2.替换的位置能够使用名称来替换

    以下我们来说说,在方法里面加入属性


    >>>import sys
    >>> 'my {1[spam]} runs {0.platform}'.format(sys,{'spam':
    					     'laptop'})
    'my laptop runs win32'
    >>> 

    >>> 'my {config[spam]} runs {sys.platform}'.format(sys=sys,config={'spam':'laptop'})
    'my laptop runs win32'
    >>> 


    上面两个样例里面。第一处读取了字符串,第二处读取sys里面的platform属性

    以下再举一个样例,说明在表达式里面使用偏移量

    >>> aList=list('abcde')
    >>> aList
    ['a', 'b', 'c', 'd', 'e']
    >>> 'first={0[0]} third={0[2]}'.format (aList)
    'first=a third=c'
    >>> 


    注意:在使用偏移量的时候仅仅可以是正整数,不可以使用负数。不可以使用代表区间正整数

    >>> aList=list('abcde')
    
    >>> aList
    ['a', 'b', 'c', 'd', 'e']
    >>> 'first={0[0]} third={0[-1]}'.format (aList)
    Traceback (most recent call last):
      File "<pyshell#2>", line 1, in <module>
        'first={0[0]} third={0[-1]}'.format (aList)
    TypeError: list indices must be integers, not str
    >>> 'first={0[0]} third={0[1:3]}'.format (aList)
    Traceback (most recent call last):
      File "<pyshell#3>", line 1, in <module>
        'first={0[0]} third={0[1:3]}'.format (aList)
    TypeError: list indices must be integers, not str
    >>> 



     

    就讲到这里,谢谢大家

    ------------------------------------------------------------------

    点击跳转零基础学python-文件夹


  • 相关阅读:
    力扣3. 无重复字符的最长子串
    力扣724. 寻找数组的中心索引
    力扣105. 从前序与中序遍历序列构造二叉树
    力扣541. 反转字符串 II
    力扣496. 下一个更大元素 I
    力扣129. 求根到叶子节点数字之和
    力扣628. 三个数的最大乘积
    力扣415. 字符串相加
    力扣409. 最长回文串
    力扣404. 左叶子之和
  • 原文地址:https://www.cnblogs.com/clnchanpin/p/6932154.html
Copyright © 2011-2022 走看看