在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?"