I want to use tqdm on a for loop that might be a bit weird and it doesn't work. Here is the for loop in question:
for (Lm1, La1), (Lm2, La2) in tqdm(product(product(Lm_values, La_values), product(Lm_values, La_values))):
Is it impossible to use tqdm in that case?

Than you for your answers, adding the "total=(len(Lm_values)*len(La_values))**2" argument did the trick.
Have a nice day.