100개의 토큰을 가지고 결과에 따라서 토큰을 획득하거나 잃는 규칙으로 간단한 슬롯머신 게임의 코드를 파이썬으로 구현하면 아래와 같다. import random # 슬롯머신 결과 생성 def spin(): return random.choice(["Cherry", "Bell", "Lemon", "Orange", "Star", "Skull"]) # 게임 진행 def play(): tokens = 100 # 초기 토큰 개수 while True: print() print(f"You have {tokens} tokens.") if tokens