Python3 注释
Python3 注释
注释是对代码的解释和说明,其目的是便于自己和他人阅读和理解程序。
一个具有良好编程风格的程序员,应该遵守编程规范,做好代码的注释,这不仅方便自己以后的阅读,也方便与其他程序员的交流。
Python中的注释有单行注释和多行注释。
1. Python 单行注释
Python的单行注释以 # 开头,例如:
Python3 范例
# 这是一个注释 print("Hello, World!")
相关文章
- Python while 循环语句
- Python 循环嵌套
- Python Deque
- Python 搜索树
- Python3 模块
- Python3 SMTP发送邮件
- Python3 内置函数
- Python pow() 函数
- Python File tell() 方法
- Python os.fchdir() 方法
- Python os.fpathconf() 方法
- Python os.lchflags() 方法
- Python os.write() 方法
- Python isupper()方法
- Python rjust()方法
- Python List len()方法
- Python List append()方法
- Python List insert()方法
- Python 字典 Dictionary get()方法
- Python time altzone()方法