mirror of
				https://github.com/balkian/balkian.github.com.git
				synced 2025-10-31 07:38:18 +00:00 
			
		
		
		
	
		
			
				
	
	
	
		
			453 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			453 B
		
	
	
	
	
	
	
	
title, date, tags
| title | date | tags | |
|---|---|---|---|
| Progress bars in python | 2016-09-28 18:47:00 | 
 | 
tqdm is a nice way to add progress bars in the command line or in a jupyter notebook.
from tqdm import tqdm
import time
for i in tqdm(range(100)):
    time.sleep(1)