Files
roflProjects/Le-le-let me die/I don’t really know what the point in life is.py
BarsTiger 5f89ae2f94 1
2021-07-28 21:58:11 +03:00

27 lines
528 B
Python

import time, subprocess, sys
try:
import vlc
except:
subprocess.check_call([sys.executable, "-m", "pip", "install", 'python-vlc'])
import vlc
toxin = vlc.MediaPlayer("https://github.com/BarsTiger/roflProjects/raw/master/files/toxin.mp3")
toxin.play()
time.sleep(16)
print("Я...")
time.sleep(2)
print("Гуль")
time.sleep(1)
print("Ле ле лет ми дай")
time.sleep(0.5)
while True:
i = 1000
while i != 6:
print(str(i) + " - 7 = " + str(i - 7))
i -= 7
time.sleep(0.01)