Python TQDM Width Seet

from tqdm import tqdm

progressBar = tqdm(total=100, desc="Your description here", ncols=130) # You can change the 'ncols' parameter, to change the width of the progress bar
i = 0
while i <= 100:
  progressBar.update()
progressBar.close()
mountainpython