Python不分字元或字串,通通使用單引號或雙引號表示字元與字串
a = " a "b = ' a b 'c = ' M a r y 'd = " 小明"
print(a)print(b)print(c)print(d)
a a b M a r y 小明