Что не так в коде python( делал орел и решку) import random
print("Орел и решка")
print("Ты должен загадать орла или решку!")
for i in range(5):
pc = input('Выбери: орел или решка - ')
bc = random.randint(1, 2)
if pc == bc:
print('Ты выйграл!')
else:
print('Ты проиграл!')
import random
print("Орел и решка")
reshka = ("Решка", "решка")
orel = ("Орёл", "Орел", "орел", "орёл")
orelreshka = [reshka, orel]
print ("Орёл и решка v 1.0")
work = True
yes = ("Да", "да")
no = ("Нет", "нет")
def workstill():
work1 = input("Играть дальше? (Да, нет)")
if work1 in yes:
work = True
if work1 in no:
sys.exit()
while work == True:
choice = input("Орёл или решка?")
randomchoice = random.choice(orelreshka)
if choice in randomchoice:
print ("you won")
workstill()
else:
print ("you lost")
workstill()
Объяснение:
так думаю лучше