📅  最后修改于: 2022-03-11 14:45:33.745000             🧑  作者: Mango
#Strings in python are surrounded by either single quotation marks, or double
#quotation marks. for example if you type
print("python")
print('python')
#thse both are going to give the same answer which is python
python
# so this means that python suppoerts both single quotation marks and
#double quotation marks