Last active
August 8, 2021 13:40
-
-
Save SeryiBaran/f0cc1e128d35d8e0964723de95d8b75c to your computer and use it in GitHub Desktop.
Python Таймер
This file contains 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
import time | |
import pygame | |
import os | |
pygame.mixer.init() | |
song = pygame.mixer.Sound("file.mp3") | |
seconds = int(input("Сколько секунд ждать: ")) | |
for i in range(1, seconds+1): | |
time.sleep(1) | |
os.system("cls") | |
print("Таймер поставлен на", seconds) | |
print("Прошло", i) | |
print("Осталось", seconds - i) | |
print("\n") | |
clock = pygame.time.Clock() | |
song.play(-1) | |
while True: | |
clock.tick(60) | |
pygame.quit() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment