标签:style def 笔记 rom foo 用例 pre span 函数
# 用例一 #缺少调用的函数会报错 # def foo(): # print("from foo") # bar() # # foo() # 用例二 # def bar(): # print("from bar") # def foo(): # print("from foo") # bar() # # foo() # 用例三 # def foo(): # print("from foo") # bar() # def bar(): # print("from bar") # # foo() # 用例四 # 会报错 第1步 # def foo(): 第2步 # print("from foo") 第3步 # bar() 第4步 报错之前没有bar()这个函数 # foo() 第1步 # def bar(): # print("from bar")
标签:style def 笔记 rom foo 用例 pre span 函数
原文地址:https://www.cnblogs.com/chency2018/p/8831640.html