我剛剛開始玩python並尋找建議。基本的python,def函數和調用文本菜單
問題是與菜單(),對七號線某種原因,我得到一個語法錯誤
$ MENU()
不知道我做錯了。
def MENU():
print("Menu:")
print(" 0. Menu")
print(" 1. Random Number Generator")
access = int(input("Make a selection from the above list: ")
MENU() ## Problem area
if access == 1:
## Random Number Generator
import random
## Imports random functions
count = 0
b = 0
## Creates the loop function, printing out the dataset
while count < 100:
count += 1
a = random.randrange(1,101)
print(count,". ", a, end=" | ")
b += a
## Shows the average values for the program, output
else:
print()
print("Finish!")
print(b)
print(b/100)
menu()
else:
MENU()
上下文:我使用這個系統只是爲了提高我的語言以及防止自己創建100行的10行文件。
出於某種原因,該計劃的一部分沒有正確的格式,我敢肯定,我沒有它正確,但它不影響發生問題的可見性。 – Alex