PyCharm print end='\r' statement not working

后端 未结 2 1866
盖世英雄少女心
盖世英雄少女心 2021-02-13 03:32

There are already lots of other questions about the print statement, but I have not found an answer to my problem:

When I do:

for idx in range(10):
    p         


        
2条回答
  •  感情败类
    2021-02-13 03:42

    Try:

        for idx in range(10):
            print('\r', idx, end='')
    

    Carriage return at front, and end with '' to avoid new line '\n'. One solution to avoid the space is to use the format convention:

        for idx in range(10):
            print("'\r{0}".format(idx), end='')
    

提交回复
热议问题