【课程3.4】 文本序列str常用操作
字符串是 Python 中最常用的数据类型。我们可以使用引号(‘或”)来创建字符串
字符串也是序列:文本序列
1.字符串引号
str1 = "abc"
str2 = 'abc'
str3 = 'my name is "fatbird"'
# 双引号单引号无区别,但文本中有引号的时候要相互交替使用
str4 = '''hello! how are you?
I`m fine, thank you.'''
# 需要多行字符串时候用三引号 ''' ''',""" """
2.转义字符:\
print('\'', '\"') # \',\
1