1. 程式人生 > >函數的多類型傳值

函數的多類型傳值

pri span fun 數值 color pre 字符 env code

如下:

#!/usr/bin/env python

def fun(x, y):
    print(x+y)

fun(2, 3)        # 把數值類型作為參數傳入函數
 
fun(a, b)    # 把字符串類型作為參數傳入函數

t = (2, 3)       # 把元組類型作為參數傳入函數
fun(*t)

dic = {x:2, y:3}   # 把字典類型作為參數傳入函數
fun(**dic)

函數的多類型傳值