1. 程式人生 > >Python函數相關筆記

Python函數相關筆記

put () style 獲取參數 raw_input 獲取 python col 輸出結果

定義一個函數使用def語句

def 函數名(參數列表):# 可以沒有參數
    函數體

def 函數名(參數),當這個函數需要傳入參數時,獲取參數傳入函數中。

測試中,定義函數test,將用戶輸入賦值給s,s參數傳入test中,打印i。

def test(i):
    print i

s = raw_input( )
test(s)

輸出結果如下:

 123
123

關於函數的參數,如果設置了默認參數,當函數沒有傳入參數是打印默認參數,傳入參數則打印傳入的參數

def test2(x = 1,y = 2):
    print test=, x,and, y
test2()
test2(
3,5)

輸出結果如下:

test= 1 and 2
test= 3 and 5

Python函數相關筆記