摘要: import time# def foo():# print("in the foo")# bar()# #foo()# def bar():# print("in the bar")## foo()# bar()def bar(): #基本函数 time.sleep(4) print("in th 阅读全文
posted @ 2018-08-05 16:07 亚格斯123 阅读(65) 评论(0) 推荐(0)
摘要: x = 0def grandpa(): x = 1 print(x) def dad(): x = 2 print(x) def son(): x = 3 print(x) son() dad()grandpa() 阅读全文
posted @ 2018-08-05 16:05 亚格斯123 阅读(94) 评论(0) 推荐(0)