F-String 让人上瘾 一个工具脚本的例子 https://www.pydanny.com/python-f-string-are-fun.html 在Python3.6的发布中,我们看到他们采纳了字符串字面量插值,或者用更通俗的说法:f-string. 最开始叫我用的时候,我是犹豫的,因为我们已经有很多字符串工具了: one, two = 1, 2 _format = '{},{}'.format(one, two) _percent = '%s,%s' % (one, two) _con