标签: python
我试过了:
a = '%s' % John
和
{{1}}
但它不正确。
我需要这个
约翰 - > "约翰"
转换后的约翰"有双引号。
答案 0 :(得分:0)
>>> foo = '"{name}"'.format(name="John") >>> foo '"John"'
OR
>>> bar = '"{0}"'.format("John") >>> bar '"John"'