学习笔记59_python字符串处理

python中,字符串可以使用 '或"括起来

1. 要想写成  "hellow "aaaa"  ",在python中,可以"hellow 'A' "

2.使用'''可以换行,相当于 C#中的@"aaaaa"

如  这样

print '''aaaaa

bbbbbb'''

原文地址:https://www.cnblogs.com/pylblog/p/8229091.html