与变量名相关
and elif import return
as else in try
assert except is while
break finally lambda with
class for not yield
continue from or
def global pass
del if raise
1 ‘你好,世界‘ 2 “你好,世界” 3 ““你好,世界”” 4 “““你好,世界”””
1 a = "Hello" 2 b = "World" 3 c = a + b 4 print(c) # 输出的值为 HelloWorld
原文:https://www.cnblogs.com/Doaoao/p/9975712.html