您好,欢迎访问一九零五行业门户网

Python基础中的字符串详解

python的字符串可以使用单引号('), 双引号(), 三引号('''); 三引号(''')里面, 可以添加单引号和双引号, 也可以通过转义序列(\)添加;
字符串放在一起自动连接成为一个字符串;
字符串前面添加限定词r或r, 表示是自然字符串(nature string), 可以忽略里面的格式限制;
在物理行末尾添加\, 可以连接下一个物理行; 括号, 方括号, 大括号也可以一定限度的扩充物理行;
具体参见代码注释;
# -*- coding: utf-8 -*- #==================== #file: abop.py #author: wendy #date: 2013-12-03 #==================== #eclipse pydev, python3.3 #三引号可以自由的使用双引号("")和单引号('') s = ''''' i am a girl and like heels. hello, "python" sister. ''' #转义序列"\" st = '''''hello, girls, l like (\'''). ''' #字符串放在一起自动连接 sa = 'girls are ''the best. ' #r表示自然字符串, 不会进行转义(\n) sr = r"nature is good. \n {0}" #"\"表示连接字符串 sc = 'oh, the lines are too \ large' #括号, 方括号, 大括号, 可以限定范围, 不用使用转义 print("the braces can do {thing}.". format(thing="lady")) print(s) print(st) print(sa) print(sr) print(sc)
输出:
the braces can do lady. i am a girl and like heels. hello, "python" sister. hello, girls, l like ('''). girls are the best. nature is good. \n {0} oh, the lines are too large
以上就是python基础中的字符串详解的详细内容。
其它类似信息

推荐信息