最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

python - Using r to overwrite a progress bar not working in Windows - Stack Overflow

programmeradmin2浏览0评论

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
  • 1 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 thing flush() 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
  • 2 So, first question here: Which terminal is your output being displayed in? Is this a windows cmd.exe window, or something built into an IDE or editor? – Charles Duffy Commented 2 days ago
  • 1 it is on IDLE for windows, command prompt for iMac. – TH3KINGOFHYRULE Commented 2 days ago
  • 1 Test at the command prompt on Windows. Probably it's not a Windows-vs-Mac difference but an IDLE-vs-terminal difference. – Charles Duffy Commented 2 days ago
  • 2 It'll never work anywhere you don't have a terminal smart enough to honor \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
 |  Show 4 more comments

1 Answer 1

Reset to default 2

IDLE 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.

发布评论

评论列表(0)

  1. 暂无评论