在python中转换字符串,不带引号引号

时间:2016-07-09 04:36:35

标签: python

我试过了:

a = '%s' % John

{{1}}

但它不正确。

我需要这个

约翰 - > "约翰"

转换后的约翰"有双引号。

1 个答案:

答案 0 :(得分:0)

>>> foo = '"{name}"'.format(name="John")
>>> foo
'"John"'

OR

>>> bar = '"{0}"'.format("John")
>>> bar
'"John"'