Jupyter Notebook untuk Loop Progress Bar

from tqdm.notebook import tqdm
# or from tqdm import tqdm

for i in tqdm(range(10)):
    pass
Odd Okapi