python format 格式化 输出

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/u010820857/article/details/84025643

从格式化表达式到方法

format:格式化方法。因为它知识上是使用了str的__format__方法。

##基本的操作

所谓格式化方法,就是可以先建立一个输出字符串的模板,然后用format来填充模板的内容。

>>> #先做一个字符串模板
>>> template = "My name is {0}. My website is {1}. I am writing {2}."

>>> #用format依次对应模板中的序号内容
>>> template.format("hiekay","hiekay.github.io","python")
'My name is hiekay. My website is hiekay.github.io. I am writing python.'

当然,上面的操作如果你要这样做,也是可以的:

>>> "My name is {0}. My website is {1}. I am writing {2}.".format("hiekay","hiekay.github.io","python")
'My name is hiekay. My website is hiekay.github.io. I am writing python.'

除了可以按照对应顺序(类似占位符了)填充模板中的位置之外,还可以用关键字来指明所应该填写的内容。

>>> template = "My name is {name}. My website is {site}"
>>> template.format(site='hiekay.github.io', name='hiekay')
'My name is hiekay. My website is hiekay.github.io'

关键词所指定的内容,也不一定非是str,其它的数据类型也可以。此外,关键词和前面的位置编号,还可以混用。比如:

>>> "{number} is in {all}. {0} are my number.".format("seven",number=7,all=[1,2,3,4,5,6,7,8,9,0])
'7 is in [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]. seven are my number.'

看输出结果,就知道,经过format方法得到是一个新的str。

序列对象的偏移量

有这样一个要求:在输出中,显示出一个单词的第一个字母和第三个个字母。比如单词python,要告诉看官,第一字母是p,第三个字母是t。

这个问题并不难。实现方法也不少,这里主要是要展示一下偏移量在format中的应用。

>>> template = "First={0[0]}, Third={0[2]}"
>>> template.format(word)
'First=p, Third=t'

list也是序列类型的,其偏移量也可。

>>> word_lst = list(word)
>>> word_lst
['p', 'y', 't', 'h', 'o', 'n']
>>> template
'First={0[0]}, Third={0[2]}'
>>> template.format(word_lst)
'First=p, Third=t'

对上面的综合一下,稍微啰嗦一点的实验:

>>> template = "The word is {0}, Its first is {0[0]}. Another word is {1}, Its second is {1[1]}."
>>> template.format("python","learn")
'The word is python, Its first is p. Another word is learn, Its second is e.'

>>> "{name}\'s first is {name[0]}".format(name="hiekay")    #指定关键词的值的偏移量
"hiekay first is h"

值得注意的是,偏移量在序列类型的数据中,因为可以是负数,即能够从右边开始计数。

>>> word
'python'
>>> word[-1]
'n'
>>> word[-2]
'o'

但是,在模板中,无法使用负数的偏移量。

>>> "First={0[0]}, End={0[-1]}".format(word) #报错
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: string indices must be integers, not str

>>> "First={0[0]}, End={0[5]}".format(word)  #把-1改为5就可以了。
'First=p, End=n'

当然,放到模板外面是完全可行的。这样就好了:

>>> "First={0}, End={1}".format(word[0],word[-1])
'First=p, End=n'

dictionary的键

直接上实验:

>>> myinfo
{'website': 'hiekay.github.io', 'name': 'hiekay', 'room': 703}
>>> template = "I am {0[name]}"
>>> template.format(myinfo)
'I am hiekay'
>>> template = "I am {0[name]}. My QQ is {qq}"
>>> template.format(myinfo,qq="123456")
'I am hiekay. My QQ is 123456'

位置后面跟键,就能得到format的参数中字典的键对应的值。除了根据位置得到,还能够根据关键词得到:

>>> myinfo
{'website': 'hiekay.github.io', 'name': 'hiekay', 'room': 703}
>>> "my website is {info[website]}, and I like {0}".format("python",info=myinfo)    #关键词info引用的是一个字典
'my website is hiekay.github.io, and I like python'

模板中添加属性

实验:

>>> import math
>>> "PI is {PI.pi}".format(PI=math)
'PI is 3.14159265359'

这是用关键词,下面换个稍微复杂点,用位置的。

>>> import sys,math
>>> 'PI is {0.pi}. My lptop runs {1.platform}'.format(math,sys)
'PI is 3.14159265359\. My lptop runs linux2' 

其它进制

在这个世界上的数学领域,除了有我们常常用到的十进制、十二进制(几点了,这是你我常用到的,钟表面就是12进制)、六十进制(这个你也熟悉的)外,还有别的进制,比如二进制、八进制、十六进制等等。进制的确在计算机最底层是用二进制的。

  • 输出时候的进制问题。
>>> "{0:X}, {1:o}, {2:b}".format(255,255,255)
'FF, 377, 11111111'

  • X:十六进制,Hex
  • o:八进制,octal
  • b:二进制,binary

顺便补充,对于数的格式化方法输出和格式化表达式一样,就不赘述了。

猜你喜欢

转载自blog.csdn.net/u010820857/article/details/84025643