python的注释

1.单行注释

# 测试备注  注释
print("hollew world")

2.多行注释

"""
使用三个双引号进行多行注释

这中间的部分就是多行注释内容
"""
print("测试多行注释")

 

评论