Skip to content

Instantly share code, notes, and snippets.

@kurtgn
Last active October 24, 2018 17:15
Show Gist options
  • Save kurtgn/d480d7b8900916b86f4e0f22cb41bd4c to your computer and use it in GitHub Desktop.
Save kurtgn/d480d7b8900916b86f4e0f22cb41bd4c to your computer and use it in GitHub Desktop.
орел или решка
# -*- coding: utf-8 -*-
from random import randint
from time import sleep
number = randint(0, 3)
print('Бросаю монетку...')
sleep(1)
if number == 0:
print('Орел!')
else:
print('Решка!')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment