Python3 数据类型-字符串
字符串是 Python 中最常用的数据类型,是一个个字符组成的有序的序列,是字符的集合。 一 字符串定义 创建字符串很简单,可以使用引号('或"或""")来创建字符串,只要为变量分配一个值即可。 实例(Pytho3.0+): s1 = 'string' s2 = "string2" s3 = '''this's a "String"''' s4 = 'hello \n magedu.com' print(s4) #hello # magedu.com s5 = r'hello \n magedu.com' print(s5) #hello \n magedu.com #字符串前面加r,表示的意思是禁止字符转义 s6 = 'c:\windows\nt' print(s6) #c:\windows #t s7 = R"c:\windows\nt" # 字符串前面加r,表示的意思是禁止字符转义 print(s7) #c:\windows\nt s8 = 'c:\windows\\nt' print(s7) #c:\windows\nt # \ 转义字符,去除特殊字符的含义 sql = """select * from user where name='tom'""" 二 字符串元素访问 索引访问 实例(Python3.0+): sql = "select * from user