progress bar.grid_clearing python code example
Example 1: how to make loading in python
import time
import sys
done = 'false'
def animate():
while done == 'false':
sys.stdout.write('\rloading |')
time.sleep(0.1)
sys.stdout.write('\rloading /')
time.sleep(0.1)
sys.stdout.write('\rloading -')
time.sleep(0.1)
sys.stdout.write('\rloading \\')
time.sleep(0.1)
sys.stdout.write('\rDone! ')
animate()
done = 'false'
Example 2: python progress bar
from tqdm import tqdm
for i in tqdm(range(0,int(10E6))):
continue