IntelliJ IDEA覆盖控制台中的打印

时间:2018-11-01 20:21:06

标签: python intellij-idea

我具有以下功能:

def printProgressBar (iteration, total, prefix = '', suffix = '', decimals = 1, length = 100, fill = '█'):
    """
    Call in a loop to create terminal progress bar
    @params:
        iteration   - Required  : current iteration (Int)
        total       - Required  : total iterations (Int)
        prefix      - Optional  : prefix string (Str)
        suffix      - Optional  : suffix string (Str)
        decimals    - cOptional  : positive number of decimals in percent complete (Int)
        length      - Optional  : character length of bar (Int)
        fill        - Optional  : bar fill character (Str)
    """
    percent = ("{0:." + str(decimals) + "f}").format(100 * (iteration / float(total)))
    filledLength = int(length * iteration // total)
    bar = fill * filledLength + '-' * (length - filledLength)
    print('\r%s |%s| %s%% %s' % (prefix, bar, percent, suffix), end = '\r')
    # Print New Line on Complete
    if iteration == total:
        print()

在循环内反复调用时,每次迭代时,控制台中的前一栏会被填充得更满一些。这在Spyder中有效,但是在IntelliJ的简单循环中运行相同功能时,控制台每次迭代都会打印一个新的进度条吗?为什么会这样,并且可以解决?

0 个答案:

没有答案