Solo Learn (Python for Beginners): Tip Calculator

Variables: When you go out to eat, you always tip 20% of the bill amount. But who’s got the time to calculate the right tip amount every time? Not you that’s for sure! You’re making a program to calculate tips and save some time. Your program needs to take the bill amount as input and … Continue reading Solo Learn (Python for Beginners): Tip Calculator

Advertisement

Solo Learn (Python for Beginners): Leaderboard

Strings You need to make a program for a leaderboard.The program needs to output the numbers 1 to 9, each on a separate line, followed by a dot:1.2.3....You can use the \n newline character to create line breaks, or, alternatively, create the desired output using three double quotes """. Solution 1: As you can see … Continue reading Solo Learn (Python for Beginners): Leaderboard