千锋教育-做有情怀、有良心、有品质的职业教育机构

400-811-9990
手机站
千锋教育

千锋学习站 | 随时随地免费学

千锋教育

扫一扫进入千锋手机站

领取全套视频
千锋教育

关注千锋学习站小程序
随时随地免费学习课程

上海
  • 北京
  • 郑州
  • 武汉
  • 成都
  • 西安
  • 沈阳
  • 广州
  • 南京
  • 深圳
  • 大连
  • 青岛
  • 杭州
  • 重庆
当前位置:郑州千锋IT培训  >  技术干货  >  pythonformat怎么用

pythonformat怎么用

来源:千锋教育
发布人:xqq
时间: 2023-11-07 23:07:26

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

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

1、基本用法

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

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

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

1>>>print('{}{}'.format('hello','world'))#不带字段

2helloworld

3>>>print('{0}{1}'.format('hello','world'))#带数字编号

4helloworld

5>>>print('{0}{1}{0}'.format('hello','world'))#打乱顺序

6helloworldhello

7>>>print('{1}{1}{0}'.format('hello','world'))

8worldworldhello

9>>>print('{a}{tom}{a}'.format(tom='hello',a='world'))#带关键字

10worldhelloworld

2、进阶用法

(1)<(默认)左对齐、>右对齐、^中间对齐、=(只用于数字)在小数点后进行补齐

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

1>>>print('{}and{}'.format('hello','world'))#默认左对齐

2helloandworld

3>>>print('{:10s}and{:>10s}'.format('hello','world'))#取10位左对齐,取10位右对齐

4helloandworld

5>>>print('{:^10s}and{:^10s}'.format('hello','world'))#取10位中间对齐

6helloandworld

7>>>print('{}is{:.2f}'.format(1.123,1.123))#取2位小数

81.123is1.12

9>>>print('{0}is{0:>10.2f}'.format(1.123))#取2位小数,右对齐,取10位

101.123is1.12

3、多个格式化

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

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

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

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

'x'-十六进制。将数字以16为基数进行输出,9以上的位数用小写字母。

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

'g'-一般格式。将数值以fixed-point格式输出。当数值特别大的时候,用幂形式打印。

'n'-数字。当值为整数时和'd'相同,值为浮点数时和'g'相同。不同的是它会根据区域设置插入数字分隔符。

'%'-百分数。将数值乘以100然后以fixed-point('f')格式打印,值后面会有一个百分号。

1>>>print('{0:b}'.format(3))

211

3>>>print('{:c}'.format(20))

4

5>>>print('{:d}'.format(20))

620

7>>>print('{:o}'.format(20))

824

9>>>print('{:x}'.format(20))

1014

11>>>print('{:e}'.format(20))

122.000000e+01

13>>>print('{:g}'.format(20.1))

1420.1

15>>>print('{:f}'.format(20))

1620.000000

17>>>print('{:n}'.format(20))

1820

19>>>print('{:%}'.format(20))

202000.000000%

21>>>

以上内容为大家介绍了python培训之format怎么用,希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:千锋教育。

声明:本站稿件版权均属千锋教育所有,未经许可不得擅自转载。

猜你喜欢LIKE

pythonformat怎么用

2023-11-07

python怎样导入包

2023-11-07

python怎么写函数

2023-11-07

最新文章NEW

python输出函数叫什么

2023-11-07

python如何遍历列表

2023-11-07

python导入不了模块怎么办

2023-11-07

相关推荐HOT

更多>>

快速通道 更多>>

最新开班信息 更多>>

网友热搜 更多>>