{site_name}

{site_name}

🌜 搜索

Python中的str是一种文本序列类型,用于表示Unicode字符序列

Python 𝄐 0
python序列类型包括字符串,python序列类型包括哪三种字符,python文字数据类型,python字符串序号体系,python字符串序列,python文本数据
Python中的str是一种文本序列类型,用于表示Unicode字符序列。在Python中,字符串可以使用单引号、双引号或三引号(三个双引号或三个单引号)来创建。

例如:

s1 = 'Hello, World!' # 使用单引号创建字符串
s2 = "你好,世界!" # 使用双引号创建字符串
s3 = """This is a
multiline string""" # 使用三引号创建多行字符串

print(s1) # 输出:Hello, World!
print(s2) # 输出:你好,世界!
print(s3) # 输出:
# This is a
# multiline string


字符串是不可变的,意味着一旦创建,就不能修改它们的值。但是,我们可以通过字符串切片和连接等操作来创建新字符串。

例如:

s = "Hello"
s[0] = "h" # 错误:字符串是不可变的

new_s = s + ", World!" # 连接两个字符串
print(new_s) # 输出:Hello, World!

sub_s = s[1:4] # 切片获取子字符串
print(sub_s) # 输出:ell