Hyprland-dotfiles/scripts/growthrate.py
Stephan Raabe 873a53d7e8 Updates
2023-05-11 13:18:52 +02:00

31 lines
979 B
Python

# ____ _ _ ____ _
# / ___|_ __ _____ _| |_| |__ | _ \ __ _| |_ ___
# | | _| '__/ _ \ \ /\ / / __| '_ \ | |_) / _` | __/ _ \
# | |_| | | | (_) \ V V /| |_| | | | | _ < (_| | || __/
# \____|_| \___/ \_/\_/ \__|_| |_| |_| \_\__,_|\__\___|
#
# by Stephan Raabe (2023)
# ---------------------------------------------------------------
# DESC: Python script to calculate the growth rate of two numbers
# ---------------------------------------------------------------
import rich
import pyperclip
from rich.console import Console
from rich.prompt import FloatPrompt
# Show prompts
console = Console()
num1 = FloatPrompt.ask("Original value")
num2 = FloatPrompt.ask("New value")
# printing the sum in float
gr = ((num2-num1)/num1)
percentage = "{:.2%}".format(gr)
console.print(percentage, style="bold")
# copy result into the system clipboard
pyperclip.copy(percentage)
print("Output has been copied to the clipboard!")