摘要: 函数式编程中参数使用的学习笔记 def test(x,y,z): print('参数x=',x) print('参数y=',y) print('参数z=',z)test('a','b','z')#实参与形参一一对应'''x= ay= bz= z'''print(' >')test(y= 'a',x= 阅读全文
posted @ 2020-05-11 02:20 逝水无痕L 阅读(480) 评论(0) 推荐(0)