导语:
本文主要介绍了关于python字符串方法format()如何使用的相关知识,包括字符串python,以及python正则表达式这些编程知识,希望对大家有参考作用。
1、在格式字符串中,用大括号表示要插入的值的位置、索引名和格式,将要插入的值写在format方法参数中。
2、转换标志:感叹号后面的字表示给定的值转换成相应的格式。
格式说明符:冒号后面的表达式用于详细指定字符串的格式。
实例
>>> # 指定表示方式
>>> print('in decimal: {0:d}\nin binary : {0:b}'.format(10))
# in decimal: 10
# in binary : 1010
>>> print('in fixed-point notation: {0:f}\nin scientific notation: {0:e}'.format(0.25))
# in fixed-point notation: 0.250000
# in scientific notation: 2.500000e-01
>>> # 指定精度
>>> print("{0:.2f}".format(1/3))
# 0.33
>>> # 指定宽度,默认右对齐
>>> print("{0:10.2f}".format(1/4))
# 0.25
>>> # 指定对齐方式,默认用空格填充
>>> print("{0:<10.2f}\n{0:^10.2f}\n{0:>10.2f}".format(1/6))
# 0.17
# 0.17
# 0.17
>>> # 指定对齐方式,并指定填充字符
>>> print("{0:*<10.2f}\n{0:*^10.2f}\n{0:*>10.2f}".format(1/7))
# 0.14******
# ***0.14***
# ******0.14
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python中str是什么意思08/16
- ♥ 什么是python自动化运维?01/14
- ♥ 如何从命令行执行python10/14
- ♥ python文件操作需要导入模块吗?12/10
- ♥ 如何在python中输入三引号08/16
- ♥ 分组在python正则表达式中的使用01/04
内容反馈