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