标签: python string
如何在python中的用户输入的开头和结尾自动添加单引号,以便用户不必手动执行,我的意思是当他们想要输入时:
this is a text
它会自动变为:
'this is a text'
我有一些有特殊字符的文字,它们必须在单引号内,我喜欢在输入这些文字时自动添加单引号。
答案 0 :(得分:2)
你的意思是这样吗?
userText = raw_input("Enter some text:") quatedText = "'" + userText + "'"