🤖

最近見つけたPythonの小技

2022/10/25に公開

Python3.8以降で使えるf-stringsの小技です。

test.py
x = 10
print(f'{x=}')

↑こうすると、こう↓

CLI
$ python test.py
>>> x=10

なかなか便利。


test.py
print(f'{x  =  }')

↑こうしても、こう↓

CLI
$ python test.py
>>> x  =  10

便利ですねえ。

GitHubで編集を提案

Discussion