注释
- 单行注释
- 多行注释
- 语句注释
# This is a Single line annotation
print('Hello World') #Simple annotation
"""
If an annotation added after the statements
Then this annotation must be short and simple.
Otherwise it must be annoted after newline
"""
'''
This is also a multannotation
Ctrl + / can be create a annotation quickly
Single Line annotation an be explain single statement
Multannotation can describe a code block.
'''
单行注释可以对一个语句进行注释
多行注释可以解释一个代码块
语句注释必须清晰且简短