#This is a roulette wheel
import random
import time
#Randomiser
green = [0]
red = [1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35]
black = [2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36]
spin = random.randint (0,36)
#Program
bet = int(input("Enter your Bets: "))
colour = input("Pick your Colour: ")
print ("The wheel is spinning")
if spin in green:
print ("The ball stopped on green")
print ("You won",bet*100,"!")
if spin in red:
print ("The ball stopped on red")
print ("You won",bet*2,"!")
if spin in black:
print ("The ball stopped on black")
print ("You won",bet*2,"!")
誰かが勝ったかどうかを伝えます。しかし誰かが失ったかどうかは分かりません。私は数ヶ月のPythonを勉強してきたし、誰かが私を助けることができるかどうか疑問に思っていた。ありがとう!ルーレット・ホイールで勝ち、失うこと
私の最初の答えと私はそれを台無しにしました。 – bobbyanne
ありがとうございます。それは私が授業で理解できなかったことの一つです。ありがとう! – ItsTate