Browse Source

Update 'README.md'

天问 1 year ago
parent
commit
7afc0f948a
1 changed files with 12 additions and 1 deletions
  1. 12 1
      README.md

+ 12 - 1
README.md

@@ -1,3 +1,14 @@
 # tqdm
 # tqdm
 
 
-进度条
+进度条
+
+## Usage
+
+```
+from tqdm import tqdm
+import time
+
+if __name__=='__main__':
+    for i in tqdm(range(100)):
+        time.sleep(1)
+```