LoginSignup
16
15

More than 5 years have passed since last update.

python : 文字列フォーマットに定義済みの変数をそのまま使う

Posted at

便利だったのでメモ。
format() に locals() を渡すとよい。

ipython
name = 'Taro'
country = 'Japan'
print("I'm {name} from {country}.".format(**locals()))
stdout
I'm Taro from Japan.

参考

16
15
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
15