Solo Learn (Python for Beginners): BMI Calculator

Tracking your BMI is a useful way of checking if you’re maintaining a healthy weight. It’s calculated using a person's weight and height, using this formula: weight / height²The resulting number indicates one of the following categories:Underweight = less than 18.5Normal = more or equal to 18.5 and less than 25Overweight = more or equal to 25 and less … Continue reading Solo Learn (Python for Beginners): BMI Calculator

Advertisement

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

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