mirror of
https://github.com/bhattsameer/Bombers.git
synced 2023-08-10 21:12:53 +03:00
14 lines
647 B
Python
14 lines
647 B
Python
import sys
|
|
import time
|
|
|
|
print("Loading:")
|
|
|
|
#animation = ["10%", "20%", "30%", "40%", "50%", "60%", "70%", "80%", "90%", "100%"]
|
|
animation = ["[■□□□□□□□□□]","[■■□□□□□□□□]", "[■■■□□□□□□□]", "[■■■■□□□□□□]", "[■■■■■□□□□□]", "[■■■■■■□□□□]", "[■■■■■■■□□□]", "[■■■■■■■■□□]", "[■■■■■■■■■□]", "[■■■■■■■■■■]"]
|
|
|
|
for i in range(len(animation)):
|
|
time.sleep(0.2)
|
|
sys.stdout.write("\r" + animation[i % len(animation)])
|
|
sys.stdout.flush()
|
|
|
|
print("\n") |