![抛硬币程序][1]
标题
我必须制作这个翻转硬币程序,它会输出翻转次数和正面或反面的数量。用户有机会尽可能多地玩,直到他们退出程序。我应该得到这个人翻转并得到头部或尾部的总次数。比如一个人玩了 3 次,第一次 10 次,第二次 15 次,第三次 20 次,那么总共 45 次。我无法让程序计算翻转、正面或反面的总数。同样在该人第一次玩之后,如果他们选择再次玩,他们不能输入低于之前数量的翻转次数。我不知道出了什么问题。
#coin toss
print "Welcome to my coin tossing game. I will flip a coin the amount"
print "of times you tell me to and show you your results."
import random
counter = 0
start = 0
user_input = 0
heads = 0
tails = 0
user_input = int(raw_input("Enter the number of times you want to flip the coin "))
while user_input > counter:
chance = random.randrange(2)
counter = counter + 1
if chance == 1:
heads = heads + 1
else:
tails = tails + 1
print "You flipped the coin", counter, "times."
print heads, "times came out heads"
print tails, "times came out tails"
headstotal = heads
tailstotal = tails
restart = raw_input("Would you like to try again? y or n ")
while restart == "y":
user_input = int(raw_input("Enter the number of times you want to flip the coin"))
while user_input > counter:
chance = random.randrange(2)
counter = counter + 1
if chance == 1:
heads = heads + 1
else:
tails = tails + 1
print "You flipped the coin", counter, "times."
print heads, "times came out heads."
print tails, "times came out tails."
restart = raw_input("Would you like to try again? y or n ")
print "Thanks for playing."