Saturday, 13 August 2022

Day 50 : Progress Bar in Python

 

import sys, time


def progressBar(count, total, suffix=''):

    barLength = 60

    filledLength = int(round(barLength * count / float(total)))


    percent = round(100.0 * count / float(total), 1)

    bar = '=' * filledLength + '-' * (barLength - filledLength)


    sys.stdout.write('[%s] %s%s ...%s\r' % (bar, percent, '%', suffix))

    sys.stdout.flush()


for i in range(10):

time.sleep(1)

progressBar(i, 10)


    #clcoding.com

[======================================================------] 90.0% ...



0 Comments:

Post a Comment

Codecademy Code Foundations

Popular Posts

Categories

Android (23) AngularJS (1) Assembly Language (2) Books (10) C (75) C# (12) C++ (81) Course (1) Data Strucures (4) Downloads (1) Engineering (13) flutter (1) FPL (17) Hadoop (1) HTML&CSS (40) IS (25) Java (89) Leet Code (4) Pandas (2) PHP (20) Projects (19) Python (434) R (69) Selenium Webdriver (2) Software (14) SQL (27)