在python里加三个引号
时间: 2023-05-25 18:01:02 浏览: 125
python三引号如何输入
三个引号在 Python 中通常用于表示多行注释或者多行字符串。
如果我们使用三个单引号 ('''),那么就可以表示一个多行字符串。例如:
```
my_string = '''
This is a multi-line string.
It allows us to include line breaks and tabs as well.
Isn't it great?
'''
```
而如果我们使用三个双引号 ("""),那么就可以表示多行注释。例如:
```
"""
This is a multi-line comment.
It allows us to explain our code in more detail, without worrying about syntax.
"""
```
需要注意的是,Python 解释器会忽略多行注释,而多行字符串则会作为一个完整的字符串被解释器读取。
阅读全文