Skip to content
Gallery
Мастер-классы
Share
Explore
Python

icon picker
Игра "Запомни шифр"

import random
import os
import time
sequence = []
for i in range(4):
sequence.append(random.randint(1, 9))
print(sequence)
time.sleep(2)
os.system("cls")
print("Введите последовательность чисел, разделяя их пробелами.")
print("Например, если последовательность - [3, 1, 4, 2], введите: 3 1 4 2")
player_input = input("Ваша последовательность: ")
player_input = list(map(int, player_input.split()))
if sequence == player_input:
print("Вы угадали")
else:
print("не угадали")
input("Нажмите enter чтобы выйти")

Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.