Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import time
- wopros = float(input("Введите время (мин. сек.): "))
- if wopros < 1:
- wopros = wopros * 10
- time.sleep(wopros)
- else:
- wopros = wopros * 60
- time.sleep(wopros)
- print("Время вышло!" + '\a')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement