Delete ssaver.py

This commit is contained in:
curly60e 2020-06-09 22:59:59 -03:00 committed by GitHub
parent 24e7602dca
commit 2cfcb6313b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,21 +0,0 @@
import time
import os
def countdown(t):
while t > 0:
screensv()
t -= 1
time.sleep(1)
print("BLAST OFF!")
def screensv():
os.system("python3 terminal_matrix/matrix.py")
print("How many seconds to count down? Enter an integer:")
seconds = input()
while not seconds.isdigit():
screensv()
seconds = input()
seconds = int(seconds)
countdown(seconds)