Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create Progress bar.py #1950

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions Progress bar.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
import math
import colorama
from colorama import Fore, Style

colorama.init()

def progress_bar(progress, total, color=Fore.CYAN, complete_color=Fore.GREEN):
"""
- progress:int --> current progress of the operation (ex. index of an item inside a list)
- total:int --> the actual lenght of the operation (ex. the lenght of a list of items)
- color --> color for the bar and percentage value during the operation
- complete_color --> color for the bar and percentage value once the operation is complete
"""

percent = 100 * (progress / total)
bar_length = 50 #Set fixed lenght of the bar to 50 chars (Thanks to NitkarshChourasia for improvement)
completed_length = int(bar_length * (progress / total))
bar = '█' * completed_length + '-' * (bar_length - completed_length)

print(f'\r|{color}{bar}{Style.RESET_ALL}| {color}{percent:.2f}%{Style.RESET_ALL}', end='', flush=True)
#Using f-strings and print statement's parameter:
#\r --> Special escape character that allows to keep writing on the same section of the line (in this case from the beginning)
#{color + bar + Style.RESET_ALL} --> Sums the Fore color character to create a pretty colored bar on the screen
#percent:.2f --> ":.xf" allows to round to x value of decimal points (2 in this case). It is important, for this script, that the two print statement use the same x value to avoid misprinting
#{color}{percent:.2f}{Style.RESET_ALL} --> Same as previous but since "percent" is of type float it can't be directly added to a string.
# To fix this you can either use this sintax or convert it to str by doing {color + str(percent:.2f) + Style.RESET_ALL}
#flush=True --> ensure real-time printing of the progress bar without buffering

if progress == total:
print(f'\r|{complete_color}{bar}{Style.RESET_ALL}| {complete_color}{percent:.2f}%{Style.RESET_ALL}')

numbers = [x * 5 for x in range(2000, 3000)]
lenght = len(numbers)

progress_bar(0, total=lenght)

results = []
for i, x in enumerate(numbers):
#Iterate over the list of ints with enumerate to get both the index "i" (used for progress) and the value of the int "x" to execute the operation
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Improvements made:

Added Style.RESET_ALL after each colored element to ensure the color doesn't carry over to subsequent print statements.
Adjusted the length of the progress bar to a fixed value (50 characters) for better visualization.
Used flush=True in the print statement to ensure real-time printing of the progress bar without buffering.

This improved version provides a clearer and more visually appealing progress bar while calculating factorials for the given numbers.

results.append(math.factorial(x))
progress_bar(progress=(i + 1), total=lenght)
#Since indexes start at 0, add 1 to the first iteration and increase it by one at every following iteration for consistency

print("\nFactorials calculated successfully!")
Loading