Código:
def juego(): while True: T = input ("Cuantas veces sale cara?") t= int(T) a= range (-1,2) if t in a : B = input("Cuantas veces sale cruz?") b=int(B) if b in a and b+t== 1: import random #Random Function #set the coin headsCount = 0 tailsCount = 0 count = 0 #the loop while count < 1 : coin = random.randrange(2) if coin == 0: headsCount +=1 print ("salio cara") else: tailsCount +=1 print ("Salio seca") count +=1 resultado1 = str(headsCount) resultado2 = str(tailsCount) print (resultado1 + " veces salio cara") print (resultado2 + " veces salio seca") if t == resultado1: print("GANASTE!") else : print("Intente de nuevo, esta vez seguro ganas!") juego()