摘要:
1.格式: def 函数名(形参): 函数体 2.过程:就是没有返回值的函数 3.参数 4.参数值:**字典 *列表 def test(x,*args): print(x) print(args) test(1) test(1,2,3,4,5) test(1,{'name':'alex'}) tes 阅读全文
posted @ 2018-03-15 20:02
Allen_Tsui
阅读(121)
评论(0)
推荐(0)