知行编程网知行编程网  2022-08-20 07:30 知行编程网 隐藏边栏  8 
文章评分 0 次,平均分 0.0
导语: 本文主要介绍了关于python的format怎么用的相关知识,包括guiformat怎么用,以及python语言format是什么意思这些编程知识,希望对大家有参考作用。

如何使用python的格式

格式使用相对于基本格式化输出使用 '%' 方法。 format() 函数更强大。该函数将字符串视为模板,通过传入参数对其进行格式化,并使用大括号'{}'作为特殊字符替换'%'

使用方法由两种:b.format(a)和format(a,b)。

1、基本用法

(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

2、进阶用法

(1) < (默认) 左对齐, > 右对齐, ^ 中对齐, = (仅适用于数字) 小数点后填充

(2)取位数“{:4s}”、"{:.2f}"等

 1 >>> print('{} and {}'.format('hello','world'))  # 默认左对齐
 2 hello and world
 3 >>> print('{:10s} and {:>10s}'.format('hello','world'))  # 取10位左对齐,取10位右对齐
 4 hello      and      world
 5 >>> print('{:^10s} and {:^10s}'.format('hello','world'))  # 取10位中间对齐
 6   hello    and   world   
 7 >>> print('{} is {:.2f}'.format(1.123,1.123))  # 取2位小数
 8 1.123 is 1.12
 9 >>> print('{0} is {0:>10.2f}'.format(1.123))  # 取2位小数,右对齐,取10位
10 1.123 is       1.12

3、多个格式化

'b' - 二进制。将数字以2为基数进行输出。

'c' - 字符。在打印之前将整数转换成对应的Unicode字符串。

'd' - 十进制整数。将数字以10为基数进行输出。

'o' - 八进制。将数字以8为基数进行输出。

'x' - 十六进制。该数字以 16 为基数输出,大于 9 的数字使用小写字母。

'e' - 幂符号。用科学计数法打印数字。用'e'表示幂。

'g' - 通用格式。以定点格式输出值。当值特别大时,以幂的形式打印。

'n' - 数字。当值为整数时与“d”相同,当值为浮点数时与“g”相同。不同之处在于它根据语言环境插入数字分隔符。

'%' - 百分比。将值乘以 100 并以定点 ('f') 格式打印,并在值后加上百分号。

 1 >>> print('{0:b}'.format(3))
 2 11
 3 >>> print('{:c}'.format(20))
 4 
 5 >>> print('{:d}'.format(20))
 6 20
 7 >>> print('{:o}'.format(20))
 8 24
 9 >>> print('{:x}'.format(20))
10 14
11 >>> print('{:e}'.format(20))
12 2.000000e+01
13 >>> print('{:g}'.format(20.1))
14 20.1
15 >>> print('{:f}'.format(20))
16 20.000000
17 >>> print('{:n}'.format(20))
18 20
19 >>> print('{:%}'.format(20))
20 2000.000000%
21 >>>

本文为原创文章,版权归所有,欢迎分享本文,转载请保留出处!

知行编程网
知行编程网 关注:1    粉丝:1
这个人很懒,什么都没写
扫一扫二维码分享