I have this snippet of code that does not work. Well, it works fine, but it does not delete on my Windows computer. Please Help!
import time
import sys
def loading_bar(count, total, suffix=''):
length = 60
endlength = int(round(length * count / float(total)))
percents = round(100.0 * count / float(total), 1)
bar = '=' * endlength + '-' * (length - endlength)
sys.stdout.write(f'[{bar}] {percents}% ...{suffix}\r')
sys.stdout.flush()
def loading():
items = list(range(0, 200))
total_items = len(items)
print("Loading:")
for i, item in enumerate(items):
time.sleep(0.1)
loading_bar(i + 1, total_items, suffix=str(item))
print()
print("Done!")
time.sleep(1)
loading()
I have this snippet of code that does not work. Well, it works fine, but it does not delete on my Windows computer. Please Help!
import time
import sys
def loading_bar(count, total, suffix=''):
length = 60
endlength = int(round(length * count / float(total)))
percents = round(100.0 * count / float(total), 1)
bar = '=' * endlength + '-' * (length - endlength)
sys.stdout.write(f'[{bar}] {percents}% ...{suffix}\r')
sys.stdout.flush()
def loading():
items = list(range(0, 200))
total_items = len(items)
print("Loading:")
for i, item in enumerate(items):
time.sleep(0.1)
loading_bar(i + 1, total_items, suffix=str(item))
print()
print("Done!")
time.sleep(1)
loading()
Share
Improve this question
edited 2 days ago
Charles Duffy
297k43 gold badges434 silver badges489 bronze badges
asked 2 days ago
TH3KINGOFHYRULETH3KINGOFHYRULE
93 bronze badges
New contributor
TH3KINGOFHYRULE is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
9
|
Show 4 more comments
1 Answer
Reset to default 2IDLE doesn’t respond to \r
the way a terminal should. You can run it at the command prompt with py yourscript.py
or use an IDE that either has an integrated terminal (like VSCode) or one which has a shell that responds to \r
and other ANSI terminal control codes (like Thonny). Otherwise your code is quite good.
sys.stdout.flush()
isn't responsible for deleting anything. The\r
is what tells your terminal to send the cursor back to the beginning of the line it's already on; it's the terminal responsible for enacting that. The only thingflush()
does is prevent buffering from delaying the write to the terminal, since usually stdout is line-buffered and isn't written until there's a newline (\n
on UNIX,\r\n
on Windows). – Charles Duffy Commented 2 days ago\r
, so I file this one under "don't use IDLE". (Microsoft's terminal isn't great, but this is something it should be okay for). – Charles Duffy Commented 2 days ago