Python3 注釋
Python3 注釋
注釋是對代碼的解釋和說明,其目的是便于自己和他人閱讀和理解程序。
一個(gè)具有良好編程風(fēng)格的程序員,應(yīng)該遵守編程規(guī)范,做好代碼的注釋,這不僅方便自己以后的閱讀,也方便與其他程序員的交流。
Python中的注釋有單行注釋和多行注釋。
1. Python 單行注釋
Python的單行注釋以 # 開頭,例如:
Python3 范例
# 這是一個(gè)注釋 print("Hello, World!")
相關(guān)文章
- Python while 循環(huán)語句
- Python 循環(huán)嵌套
- Python Deque
- Python 搜索樹
- Python3 模塊
- Python3 SMTP發(fā)送郵件
- Python3 內(nèi)置函數(shù)
- Python pow() 函數(shù)
- 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()方法