当前位置:主页 > python教程 > Python str.format()和f-string

Python中str.format()和f-string的使用

发布:2023-03-24 10:10:01 59


给大家整理一篇相关的编程文章,网友耿连英根据主题投稿了本篇教程内容,涉及到Python str.format()、Python f-string、Python str.format()和f-string相关内容,已被169网友关注,内容中涉及的知识点可以在下方直接下载获取。

Python str.format()和f-string

最近看深度学习的代码时发现,显示训练过程的 loss 时,经常会用到 print(''.format()) 或 print(f'') ,学习了一下用法,在这里分享,欢迎交流和指教!

string format 有两种方式:

方式一 (str.format()) :print('{}'.format(var))

1.{} 是占位符 ( placeholder ),对应的值在 format() 的括号内。

例如:

print('Hi, {}!'.format('Mary'))

显示结果为:

Hi, Mary!

2.format() 中可以填入变量,这种方式更常见。例如:

name='Julie'
print('Hi, {}!'.format(name))

显示结果为:

Hi, Julie!

3.还可以有多个变量。例如:

num_apple=6
num_orange=3
print('I bought {} apples and {} oranges.'.format(num_apple,num_orange))

显示结果为:

I bought 6 apples and 3 oranges.

4.{} 可以设置变量格式,前面要加上 :,其后的数字表示这个整数、或字符串、或小数点后有几位。例如:

fruit='apples'
number=6
price=1.2
print('{:5d} {:8}, price:{:.5f}.'.format(number,fruit,price*number))

显示结果为:

6 apples  , price:7.20000.

从结果可以看到:

(1) 比如 apples 有 6 位,设置格式为 8 位 {:8},结果显示中 apples 后面有 2 位空格。

(2) format() 中可以传入变量运算的值,比如例子中的 price*number。

5.{} 中可以加上数字索引,对应的是 format() 中的元素位置。例如:

print('I bought {1} oranges,{0} bananas and {0} apples.'.format(6,3))

显示结果为:

I bought 3 oranges,6 bananas and 6 apples.

上面的语句中,{0} 对应 format(6,3) 的第一个值 6,{1} 对应第二个值 3。

方式二 (f-string) :print(f'{var}')

注:这里既可以用 f'',也可以用 F''。

1.与方式一不同,f'{}'直接在{}写入变量值。例如:

name='Julie'
print(f'{name} is learning Python.')

显示结果为:

Julie is learning Python.

2.与方式一相同,f'' 也可以设置多个变量。例如:

num_apple=6
num_orange=3
print(f'I bought {num_apple} apples and {num_orange} oranges.')

显示结果为:

I bought 6 apples and 3 oranges.

3.与方式一相同,{} 中可以设置格式。例如:

fruit='apples'
number=6
price=1.2
print(f'{number:5d} {fruit:8}, price:{price*number:.5f}')

显示结果为:

6 apples  , price:7.20000

到此这篇关于Python中str.format()和f-string的使用的文章就介绍到这了,更多相关Python str.format()和f-string内容请搜索码农之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持码农之家!


参考资料

相关文章

网友讨论