Last active
October 24, 2018 17:15
-
-
Save kurtgn/d480d7b8900916b86f4e0f22cb41bd4c to your computer and use it in GitHub Desktop.
орел или решка
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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