Bismillah...
It was the Second Day and it was based on pretty basic functions of Python although it was an easy one...every step made me more knowledgeable in some way ٱلْحَمْدُ لِلَّٰهِ
Here is the Project !
# Tip Simulator...
#If the bill was $150.00, split between 5 people, with 12% tip.
#Each person should pay (150.00 / 5) * 1.12 = 33.6
#Format the result to 2 decimal places = 33.60
#Tip: There are 2 ways to round a number. You might have to do some Googling to solve this.💪
#Write your code below this line 👇
print("Welcome to tip calculator !")
toatal_bill = int(input("What was the total bill ?"))
percentage_tip = int(
input("What percentage tip would you like to give? 10, 12 or 15 ?"))
p = (percentage_tip / 100) * toatal_bill
p2 = toatal_bill + p
people = int(input("How many people to split the bill ?"))
value = (p2 / people)
new = round(value, 2)
print(f"Each person should pay : {value:.2f}")
FOLLOW ALONG FOR FURTHER PROJECTS !