print between two tqdm bars code example
Example 1: tqdm every new line
from tqdm import tqdm
with tqdm(total=total, position=0, leave=True) as pbar:
for i in tqdm((foo_, range_ ), position=0, leave=True):
# run code
Example 2: tqdm continues afer break
import tqdm
iterator = tqdm.tqdm(range(100000000))
for f in iterator:
if f > 100000000/4:
iterator.close()
break