def total_cal(bill_amount,tip_perc): total = bill_amount *(1+0.01*tip_perc) total = round(total,2) print("Please Pay $",total) total_cal(150,20)
To embed this project on your website, copy the following code and paste it into your website's HTML: