是否可以使用引号作为变量?
a = input("Insert Here")
If a is " " ":
Do something
另外,我是否必须 =或?
答案 0 :(得分:1)
如果在字符串文字中有双引号,则使用单引号或转义它。
除非您想查看两个引用是否引用同一个对象,否则不要使用is
。要使用==
测试相等性,单个=
是一项任务:
a = input("Insert Here: ")
if a == '"':
Do something
答案 1 :(得分:0)
您有两种选择:
'"'
"\""