1.字符串:字符串有多种形式,可以使用单引号(’……’),双引号("……"),反斜杠 \ 可以用来转义
print('don\'t')
print('efssds')
print('"Isn\'t," they said.')
字符串字面值可以跨行连续输入。一种方式是用三重引号:"""…""" 或 ‘’’…’’’。字符串中的回车换行会自动包含到字符串中,如果不想包含,在行尾添加一个 \ 即可
print("""\
Usage: thingy [OPTIONS]
-h
-H hostname
""")
Usage: thingy [OPTIONS]
-h
-H hostname
相邻的两个或多个 字符串字面值 (引号引起来的字符)将会自动连接到一起.
print(3 * 'un' + 'ium')
print('Py' 'thon')
text = ('Put several strings within parentheses ' 'dav'
'to have them joined together.' 'dsdd')
print(text)
字符串可以索引和切片
word = 'Python'
print(word[:2] + word[2:])
字符串不能被修改。因此,向字符串的某个索引位置赋值会产生一个错误,但可以应用一些内建函数。
s = 'ssdfghjk'
print(len(s)) # 8