what is the difference between cmd and idle when using tqdm?

前端 未结 1 1404
北荒
北荒 2021-01-16 11:16

recently I want to add a simple progress bar to my script, I use tqdm to that, but what puzzle me is that the output is different when I am in the IDLE or in th

相关标签:
1条回答
  • 2021-01-16 11:41

    Limiting ourselves to ascii characters, the program output of your second code is the same in both cases -- a stream of ascii bytes representing ascii chars. The language definition does not and cannot specify what an output device or display program will do with the bytes, in particular with control characters such as '\r'.

    The Windows Command Prompt console at least sometimes interprets '\r' as 'return the cursor to the beginning of the current line without erasing anything'. In a Win10 console:

    >>> import sys; out=sys.stdout
    >>> out.write('abc\rdef')
    def7
    

    However, when I run your second code, with the missing time import added, I do not see the overwrite behavior, but see the same continued line output as with IDLE.

    C:\Users\Terry>python f:/python/mypy/tem.py
    [------------------------------------------------------------] 0.0% ...range 100[#-----------------------------------------------------------] ...
    

    On the third hand, if shorten the write to file.write("[%s]\r"% bar), then I do see one output overwritten over and over.

    The tk Text widget used by IDLE only interprets \t and \n, but not other control characters. To some of us, this seems appropriate for a development environment, where erasing characters is less appropriate than in a production environment.

    0 讨论(0)
提交回复
热议问题