python函数的几种参数类型
Posted 爬虫爬一个
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python函数的几种参数类型相关的知识,希望对你有一定的参考价值。
##位置参数 def func1(x,y): print("{} + {} = {}".format(x,y,x+y)) ##默认参数 def func2(x,y=5): print("{} + {} = {}".format(x,y,x+y)) ##可变参数 def func3(*x): print(len(x),x[0]) ## def func4(name,age=32,**x): print(name,age,x) func4(‘s‘,33,c=100,y=99,x=101)
以上是关于python函数的几种参数类型的主要内容,如果未能解决你的问题,请参考以下文章