我想在Python输入函数中添加引号...?

时间:2016-11-07 06:24:44

标签: python python-3.x

我想在Python输入函数中添加引号,如本例

name= input('what is your name?')
print(name)

输出:

what is your name? grok

'Grok'

我无法在Grok'周围获得引号。我该怎么做?

1 个答案:

答案 0 :(得分:3)

使用repr()将内容打印为:

>>> print(repr(name))
'grok'

而不是:

>>> print(name)
grok