摘要: #!/bin/python #example 1.1 #applay def function(a,b): print(a,b) def example1(): apply(function, ("whither","cannada?")) apply(function, (1,2+3)) apply(function, (32,),{"b":"hello wor... 阅读全文
posted @ 2018-04-09 12:51 在左手 阅读(259) 评论(0) 推荐(0) 编辑