import random
import time
def set_balance():
print("Welcome to balance manager")
print()
print("1, Demo mode (10,000 play chips)")
print("2, Real mode (PayPal, BTC deposit)")
print()
choice = int(input("Please enter your selection: "))
if choice == 1:
global balance
balance = 10000
demomode = 1
elif choice == 2:
global balance
balance = int(input("\nEnter the ammount to pay in £"))
def spin_wheel():
print("\n\n\n\n\n\n\n\nLETS PLAY ROULETTE, YOUR BANK IS, £", balance)
print()
print("Red, 1")
print("Black, 2")
print("Please select your colour from the menu below")
choice = int(input("\nOption selected "))
我在这里做错了什么?