摘要: # 定义函数def def func(): print('in the func') return 0 #定义函数 def func(x,y): x = x+y print(x) func(1,2) #定义函数传多个实参 * 开头变量名可以随便起 def func(*args) print(args 阅读全文
posted @ 2019-03-06 18:08 懒灬 阅读(59) 评论(0) 推荐(0)