python中字符串如何定义的?
时间: 2024-05-15 08:14:46 浏览: 70
在 Python 中,字符串可以使用单引号、双引号或三引号来定义。例如:
```
str1 = 'Hello, World!'
str2 = "I'm learning Python."
str3 = """This is a multi-line string.
It can span multiple lines."""
```
其中,str1 和 str2 使用了单引号和双引号来定义普通字符串,而 str3 则使用了三个双引号来定义多行字符串。
阅读全文