摘要: 1 #直接调用本身 2 def f1(): 3 print('from f1') 4 f1() 5 f1() 6 7 #间接调用本身 8 def f1(): 9 print('from f1') 10 f2() 11 12 def f2(): 13 print('from f2') 14 f1() 阅读全文
posted @ 2018-06-14 15:13 Isetan 阅读(171) 评论(0) 推荐(0)