Python3 函數(shù)
Python3 函數(shù)
函數(shù)是指可以被程序直接引用的預建代碼塊,也叫做子程序。函數(shù)能提高系統(tǒng)的模塊化程度和代碼的復用率。
Python 提供了許多常用預定義的內建函數(shù)。同時,開發(fā)者也可以自行創(chuàng)建函數(shù),稱之為“用戶自定義函數(shù)”。
1. 函數(shù)定義
函數(shù)定義的語法:
def 函數(shù)名(參數(shù)列表): 函數(shù)體
定義函數(shù)需要遵循以下規(guī)則:
- 函數(shù)代碼塊以 def 關鍵詞開頭,后接函數(shù)標識符名稱和圓括號 ()。
- 任何傳入?yún)?shù)和自變量必須放在圓括號中間,圓括號之間可以用于定義參數(shù)。
- 函數(shù)的第一行語句可以選擇性地使用文檔字符串—用于存放函數(shù)說明。
- 函數(shù)內容以冒號 : 起始,并且縮進。
- return [表達式] 結束函數(shù),選擇性地返回一個值給調用方,不帶表達式的 return 相當于返回 None。
讓我們使用函數(shù)來輸出"Hello World!":
Python3 范例
#!/usr/bin/python3
def hello() :
print("Hello World!")
hello()
def hello() :
print("Hello World!")
hello()
相關文章
- Python 模塊
- Python 面向對象
- Python 鏈表
- Python 高級鏈表
- Python 二叉樹
- Python3 基礎語法
- Python3 數(shù)據(jù)類型
- Python choice() 函數(shù)
- Python randrange() 函數(shù)
- Python File tell() 方法
- Python os.close() 方法
- Python os.lchown() 方法
- Python os.minor() 方法
- Python os.popen() 方法
- Python os.stat_float_times() 方法
- Python os.tmpfile() 方法
- Python os.ttyname() 方法
- Python decode()方法
- Python isalpha()方法
- Python List cmp()方法