📜  python代码示例中的字符串

📅  最后修改于: 2022-03-11 14:45:33.745000             🧑  作者: Mango

代码示例6
#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