Tip calculator. write a program to calculate the tip along with the actual bill and then split the bill between your friends? #If the bill was $150.00, split between 5 people, with a 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***\n" ) bill = float ( input ( "Enter total amount of bill\n" )) tip = int ( input ( "What percentage of tip do you like to give 10, 12,or 15 ?\n" )) peo...