您现在的位置是:课程教程文章

python使用f格式化字符串

2023-12-14 21:44课程教程文章 人已围观

1、若要格式化字符串,可在字符串开始引号前添加f或F。

2、通过这种方式,我们可以直接中引入变量值,只需将变量放在{ 和 }之间。

>>> year = 2016
>>> event = 'Referendum'
>>> f'Results of the {year} {event}'
'Results of the 2016 Referendum'

将Python变量放入{}外,还可将函数放入{}:

>>> import math
>>> print(f'The value of pi is approximately {math.pi:.3f}.')
The value of pi is approximately 3.142.

以上就是python使用f格式化字符串的方法,希望对大家有所帮助。更多Python学习指路:python基础教程

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

课程教程:python使用f格式化字符串

上一篇:python format的格式化操作

下一篇:没有了

站点信息

  • 文章统计篇文章