Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. from IPython.html.widgets import FloatProgress
  2. from IPython.display import display
  3. from time import sleep
  4. f = FloatProgress(min=0, max=100)
  5. display(f)
  6. for i in range(100):
  7. sleep(0.1)
  8. f.value = i
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement