专题文章
时长:00:00更新时间:2020-11-27 14:27:06
Python基础学习代码之函数和函数式编程:def func1(): print 'hello world' res = func1() print type(res) def func2(): return ['xyz',10000,-98] atuple = func2() x,y,z = func2() print x,y,z def func3(): return 'xyz',1000,-98 x,y,z = func3() print x,y,z def fun
查看详情