Python 的 f-strings 作用远超你的预期

开发 后端
学过 Python 的朋友应该都知道 f-strings 是用来非常方便的格式化输出的,觉得它的使用方法无外乎就是 print(f'value = { value }',其实,f-strings 远超你的预期,今天来梳理一下它还能做那些很酷的事情。

学过 Python 的朋友应该都知道 f-strings 是用来非常方便的格式化输出的,觉得它的使用方法无外乎就是 print(f'value = { value }',其实,f-strings 远超你的预期,今天来梳理一下它还能做那些很酷的事情。

1、懒得再敲一遍变量名

str_value = "hello,python coders"  
print(f"{ str_value = }")
# str_value = 'hello,python coders'

2、直接改变输出结果

num_value = 123  
print(f"{num_value % 2 = }")
# num_value % 2 = 1

3、直接格式化日期  

import datetime  
today = datetime.date.today()
print(f"{today: %Y%m%d}")
# 20211019
print(f"{today =: %Y%m%d}")
# today = 20211019

4、2/8/16 进制输出真的太简单

>>> a = 42  
>>> f"{a:b}" # 2进制
'101010'
>>> f"{a:o}" # 8进制
'52'
>>> f"{a:x}" # 16进制,小写字母
'2a'
>>> f"{a:X}" # 16进制,大写字母
'2A'
>>> f"{a:c}" # ascii 码
'*'

5、格式化浮点数

>>> num_value = 123.456  
>>> f'{num_value = :.2f}' #保留 2 位小数
'num_value = 123.46'
>>> nested_format = ".2f" #可以作为变量
>>> print(f'{num_value:{nested_format}}')
123.46

6、字符串对齐,so easy!

>>> x = 'test'  
>>> f'{x:>10}' # 右对齐,左边补空格
' test'
>>> f'{x:*<10}' # 左对齐,右边补*
'test******'
>>> f'{x:=^10}' # 居中,左右补=
'===test==='
>>> x, n = 'test', 10
>>> f'{x:~^{n}}' # 可以传入变量 n
'~~~test~~~'
>>>

7、使用 !s,!r

>>> x = '中'  
>>> f"{x!s}" # 相当于 str(x)
'中'
>>> f"{x!r}" # 相当于 repr(x)
"'中'"

8、自定义格式

class MyClass:  
def __format__(self, format_spec) -> str:
print(f'MyClass __format__ called with {format_spec=!r}')
return "MyClass()"
print(f'{MyClass():bala bala %%MYFORMAT%%}')

输出如下:

MyClass __format__ called with format_spec='bala bala  %%MYFORMAT%%'  
MyClass()

最后

Python 的 f-string 非常灵活优雅,同时还是效率最高的字符串拼接方式:

以后关于字符串的格式化,就 f-string 了。如果觉得有收获,还请点赞、在看、关注,感谢支持!

责任编辑:庞桂玉 来源: Python开发者
相关推荐

2021-12-09 15:25:15

Pythonf-strings字符串

2021-10-19 06:58:57

Python格式化f-strings

2023-02-10 08:13:56

Pythonf-strings

2023-09-12 16:55:26

Python语言PyPy

2019-04-03 16:32:38

OracleNetSuite可视性

2023-11-09 11:03:15

ChatGPTOpenAI

2019-10-12 09:23:31

网络安全人生第一份工作软件

2020-08-27 14:37:12

先导杯

2020-08-13 14:45:08

微信腾讯财报

2011-12-12 10:47:02

2021-03-07 22:22:20

比特币金融安全

2017-04-07 16:30:51

Androidstrings.xml原则

2013-12-09 11:23:19

百度联盟糗事百科

2023-09-05 08:22:44

Golangstrings 包

2023-09-06 09:10:04

Golang字符串

2023-09-04 08:17:37

Golangstrings 包

2019-06-03 10:14:07

API网关微服务

2023-12-03 23:01:49

算法研究

2020-11-19 07:49:24

JS变量作用域

2009-11-10 16:27:45

VB.NET指针
点赞
收藏

51CTO技术栈公众号