Created
January 15, 2018 21:56
-
-
Save Ddedalus/81e88be8834a361c922ab06042c8c18a to your computer and use it in GitHub Desktop.
Terminal progress indicator "x out of y"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def progress_bar(current, total, what): | |
print('\r', current, "out of", total, what, end="", flush=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment