python如何注释
时间: 2024-08-12 12:06:26 浏览: 91
在Python中,有几种常见的注释方式:
1. **单行注释**:使用`#`开始的一行文本都是注释。例如:
```python
# 这是一个单行注释
```
2. **多行注释**(文档字符串或docstrings):使用三个单引号(`'''`)或三个双引号(`"""`)包围的内容,主要用于函数、类等的文档说明。
```python
"""
This is a multi-line comment that describes the function.
"""
def my_function():
""" Docstring for this function."""
pass
```
3. **单元测试注释**(用于unittest模块的测试文件):使用前缀`# doctest:`,Python会尝试运行并验证这部分代码。
```python
# doctest: +ELLIPSIS
print("Hello, World!") # 输出: Hello, ...
```
阅读全文