阅读量:1
在Python中,字符串变量可以通过以下方式赋值:
- 使用单引号或双引号来包围字符串值,例如:
name = 'Alice'
或
message = "Hello, world!"
- 使用三个单引号或三个双引号来包围多行字符串值,例如:
text = '''This is a multi-line string.'''
或
html = """<html> <body> <h1>Welcome!</h1> </body> </html>"""
- 可以通过将两个字符串值相加来拼接字符串,例如:
greeting = "Hello, " + name
- 使用索引运算符[]来访问字符串中的单个字符,例如:
first_char = message[0]
注意:字符串是不可变的,这意味着一旦创建了一个字符串,就不能更改其内容。如果需要修改字符串,需要创建一个新的字符串。例如:
new_message = message + " How are you?"