tqdm module not callable

This is caused by trying to import tqdm using "import tqdm".

Instead, import as a comparable, as follows:
from tqdm import tqdm

for i in tqdm(range(10)):
    print(i)
SNAPPED!

SNAPPED!

Comments

Popular posts from this blog

Append to a json file python

Setup Mailhog mail server on Ubuntu