我今天在用寫一個測試的軟體 到時候會包成exe
寫法就
global_var1
global_vaw2...
def test_fun1():
...
def test_fun2():
...
if __name__ == "__main__":
ret = []
test_funs = [test_fun1, test_fun2...]
for i in range(CASE_AMOUNT):
ret.append(test_funs[i](...))
...
# 印出結果
寫是差不多寫完了 但是總感覺哪裡怪怪的 好像沒有到很美觀
其他像是一些要判斷很多的 寫到後面變成
if ...:
if ...:
if ...:
return 1
else:
return -3
else:
return -2
else:
return -1
這種感覺
這個的話有啥比較好的寫法嗎