标签:csdn orm 特定 字符 coding 面向对象 nta 不同的 odi
Python中格式化format()方法详解
Python中格式化输出字符串使用format()函数, 字符串即类, 可以使用方法;
Python是完全面向对象的语言, 任何东西都是对象;
字符串的参数使用{NUM}进行表示,0, 表示第一个参数,1, 表示第二个参数, 以后顺次递加;
使用":", 指定代表元素需要的操作, 如":.3"小数点三位, ":8"占8个字符空间等;
还可以添加特定的字母, 如:
数字(0, 1, ...)即代表format()里面的元素, 所以可以使用"."调用元素的方法;
参见网址: http://www.python.org/dev/peps/pep-3101/
代码如下:
1 # -*- coding: utf-8 -*- 2 3 age = 25 4 name = ‘Caroline‘ 5 6 print(‘{0} is {1} years old. ‘.format(name, age)) #输出参数 7 print(‘{0} is a girl. ‘.format(name)) 8 print(‘{0:.3} is a decimal. ‘.format(1/3)) #小数点后三位 9 print(‘{0:_^11} is a 11 length. ‘.format(name)) #使用_补齐空位 10 print(‘{first} is as {second}. ‘.format(first=name, second=‘Wendy‘)) #别名替换 11 print(‘My name is {0.name}‘.format(open(‘out.txt‘, ‘w‘))) #调用方法 12 print(‘My name is {0:8}.‘.format(‘Fred‘)) #指定宽度
输出:
1 Caroline is 25 years old. 2 Caroline is a girl. 3 0.333 is a decimal. 4 _Caroline__ is a 11 length. 5 Caroline is as Wendy. 6 My name is out.txt 7 My name is Fred .
原文链接:http://blog.csdn.net/caroline_wendy/article/details/17111451
标签:csdn orm 特定 字符 coding 面向对象 nta 不同的 odi
原文地址:https://www.cnblogs.com/dingruihfut/p/9362408.html