python如何传递函数中的参数 python如何向函数传递参数

主机教程 建站分享 2年前 (2022-12-02) 155次浏览

文章摘要:python如何传递函数中的参数 python如何向函数传递参数

在python中传递函数参数的方法有以下几种 1.使用function(**kwargs)方法传参 def f […]

在python中传递函数参数的方法有以下几种

1.使用function(**kwargs)方法传参

def func(**kwargs):

print kwargs

func(a = 1, b = 2, c = 3)

输出为:

{'a':1, 'b':2, 'c':3}

2.使用function(*args, **kwargs)方法传参

def func(*args, **kwargs):

print args

print kwargs

func(1,2,3, a = 4, b=5, c=6)

输出为:

(1, 2, 3)

{'a': 4, 'c': 6, 'b': 5}

3.使用function(**kwargs)方法传参

def func(**kwargs):

print kwargs

func(a = 1, b = 2, c = 3)

输出为:

{'a':1, 'b':2, 'c':3}


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python如何传递函数中的参数 python如何向函数传递参数
文章链接:http://www.7966.org/post/14354.html
转载请注明出处

喜欢 (0)