如何在字符串中键入“”,就像他说的“感觉不好”。但是它显示错误。如何在python字符串中键入“”?我尝试了很多方法都无法做到。
答案 0 :(得分:0)
您需要通过在其前面加上反斜杠来转义特殊字符,例如“或”:
myString = "he said \"felt not well\""
答案 1 :(得分:0)
您可以在字符串外使用'
:
s = 'he said "felt not well"'
或使用三元组"
:
s = """
he said "felt not well"
"""
或转义每个字符:
s = "he said \"felt not well\""
答案 2 :(得分:0)
您可以使用Unicode字符。例如这样的
print(u'\u201CHallo World\u201D')
这将导致“Hallo World”
如果您只想添加常规"
,则可以使用其他退出方式
print('"Hello World"')
这将打印"Hello World"
或者您可以使用转义print("\"Hello World\"")
这将打印"Hello World"