第八章 函数

编程种类 面向对象 面向过程 面向函数 #函数 def func1():     """testing1"""     print('in the func1')     return 0 #过程 def func2():     '''testing2'''     print('in the func2')   x=func1() y=func2()   print('from func1 r
相关文章
相关标签/搜索