码迷,mamicode.com
首页 > 编程语言 > 详细

python基础_格式化输出(%用法和format用法)

时间:2018-11-27 20:52:43      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:顺序   rac   line   opened   定位   rom   style   通过   字符   

 

%用法

 

format用法

 

1.整数的输出

%o —— oct 八进制
%d —— dec 十进制
%x —— hex 十六进制

1 >>> print(%o % 20)
2 24
3 >>> print(%d % 20)
4 20
5 >>> print(%x % 20)
6 14

 

2.浮点数输出

 

(1)格式化输出

%f ——保留小数点后面六位有效数字
  %.3f,保留3位小数位
%e ——保留小数点后面六位有效数字,指数形式输出
  %.3e,保留3位小数位,使用科学计数法
%g ——在保证六位有效数字的前提下,使用小数方式,否则使用科学计数法
  %.3g,保留3位有效数字,使用小数或科学计数法

 1 >>> print(%f % 1.11)  # 默认保留6位小数
 2 1.110000
 3 >>> print(%.1f % 1.11)  # 取1位小数
 4 1.1
 5 >>> print(%e % 1.11)  # 默认6位小数,用科学计数法
 6 1.110000e+00
 7 >>> print(%.3e % 1.11)  # 取3位小数,用科学计数法
 8 1.110e+00
 9 >>> print(%g % 1111.1111)  # 默认6位有效数字
10 1111.11
11 >>> print(%.7g % 1111.1111)  # 取7位有效数字
12 1111.111
13 >>> print(%.2g % 1111.1111)  # 取2位有效数字,自动转换为科学计数法
14 1.1e+03

 

(2)内置round()

round(number[, ndigits])
参数:
number - 这是一个数字表达式。
ndigits - 表示从小数点到最后四舍五入的位数。默认值为0。
返回值
该方法返回x的小数点舍入为n位数后的值。


round()函数只有一个参数,不指定位数的时候,返回一个整数,而且是最靠近的整数,类似于四舍五入,当指定取舍的小数点位数的时候,一般情况也是使用四舍五入的规则,但是碰到.5的情况时,如果要取舍的位数前的小数是奇数,则直接舍弃,如果是偶数则向上取舍。

注:“.5”这个是一个“坑”,且python2和python3出来的接口有时候是不一样的,尽量避免使用round()函数

 1 >>> round(1.1125)  # 四舍五入,不指定位数,取整
 2 1
 3 >>> round(1.1135,3)  # 取3位小数,由于3为奇数,则向下“舍”
 4 1.113
 5 >>> round(1.1125,3)  # 取3位小数,由于2为偶数,则向上“入”
 6 1.113
 7 >>> round(1.5)  # 无法理解,查阅一些资料是说python会对数据进行截断,没有深究
 8 2
 9 >>> round(2.5)  # 无法理解
10 2
11 >>> round(1.675,2)  # 无法理解
12 1.68
13 >>> round(2.675,2)  # 无法理解
14 2.67
15 >>> 

(3) 字符串输出

%s
%10s——右对齐,占位符10位
%-10s——左对齐,占位符10位
%.2s——截取2位字符串
%10.2s——10位占位符,截取两位字符串

 1 >>> print(%s % hello world)  # 字符串输出
 2 hello world
 3 >>> print(%20s % hello world)  # 右对齐,取20位,不够则补位
 4          hello world
 5 >>> print(%-20s % hello world)  # 左对齐,取20位,不够则补位
 6 hello world         
 7 >>> print(%.2s % hello world)  # 取2位
 8 he
 9 >>> print(%10.2s % hello world)  # 右对齐,取2位
10         he
11 >>> print(%-10.2s % hello world)  # 左对齐,取2位
12 he

 

3.format用法

相对基本格式化输出采用‘%’的方法,format()功能更强大,该函数把字符串当成一个模板,通过传入的参数进行格式化,并且使用大括号‘{}’作为特殊字符代替‘%’

位置匹配

  (1)不带编号,即“{}”

  (2)带数字编号,可调换顺序,即“{1}”、“{2}”

  (3)带关键字,即“{a}”、“{tom}”

 1 >>> print({} {}.format(hello,world))  # 不带字段
 2 hello world
 3 >>> print({0} {1}.format(hello,world))  # 带数字编号
 4 hello world
 5 >>> print({0} {1} {0}.format(hello,world))  # 打乱顺序
 6 hello world hello
 7 >>> print({1} {1} {0}.format(hello,world))
 8 world world hello
 9 >>> print({a} {tom} {a}.format(tom=hello,a=world))  # 带关键字
10 world hello world
技术分享图片
 1 >>> {0}, {1}, {2}.format(a, b, c)
 2 a, b, c
 3 >>> {}, {}, {}.format(a, b, c)  # 3.1+版本支持
 4 a, b, c
 5 >>> {2}, {1}, {0}.format(a, b, c)
 6 c, b, a
 7 >>> {2}, {1}, {0}.format(*abc)  # 可打乱顺序
 8 c, b, a
 9 >>> {0}{1}{0}.format(abra, cad)  # 可重复
10 abracadabra
通过位置匹配
技术分享图片
1 Coordinates: {latitude}, {longitude}.format(latitude=37.24N, longitude=-115.81W)
2 Coordinates: 37.24N, -115.81W
3 >>> coord = {latitude: 37.24N, longitude: -115.81W}
4 >>> Coordinates: {latitude}, {longitude}.format(**coord)
5 Coordinates: 37.24N, -115.81W
通过名字匹配

 

技术分享图片
 1 >>> c = 3-5j
 2 >>> (The complex number {0} is formed from the real part {0.real} 
 3 ...  and the imaginary part {0.imag}.).format(c)
 4 The complex number (3-5j) is formed from the real part 3.0 and the imaginary part -5.0.
 5 >>> class Point:
 6 ...     def __init__(self, x, y):
 7 ...         self.x, self.y = x, y
 8 ...     def __str__(self):
 9 ...         return Point({self.x}, {self.y}).format(self=self)
10 ...
11 >>> str(Point(4, 2))
12 Point(4, 2)
通过对象属性匹配

 

技术分享图片
1 >>>
2 >>> coord = (3, 5)
3 >>> X: {0[0]};  Y: {0[1]}.format(coord)
4 X: 3;  Y: 5
5 >>> a = {a: test_a, b: test_b}
6 >>> X: {0[a]};  Y: {0[b]}.format(a)
7 X: test_a;  Y: test_b
通过下标或key匹配参数

 

 

format的用法变形

 1 # a.format(b)
 2 >>> "{0} {1}".format("hello","world")
 3 hello world
 4 
 5 
 6 # f"xxxx"
 7 # 可在字符串前加f以达到格式化的目的,在{}里加入对象,此为format的另一种形式:
 8 
 9 >>> a = "hello"
10 >>> b = "world"
11 >>> f"{a} {b}"
12 hello world
13 
14 
15 
16 name = jack
17 age = 18
18 sex = man
19 job = "IT"
20 salary = 9999.99
21 
22 print(fmy name is {name.capitalize()}.)
23 print(fI am {age:*^10} years old.)
24 print(fI am a {sex})
25 print(fMy salary is {salary:10.3f})
26 
27 # 结果
28 my name is Jack.
29 I am ****18**** years old.
30 I am a man
31 My salary is   9999.990

 

python基础_格式化输出(%用法和format用法)

标签:顺序   rac   line   opened   定位   rom   style   通过   字符   

原文地址:https://www.cnblogs.com/penphy/p/10028546.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!