print("Martian weight calculator")
weight = input("Please enter a weight (e.g. 13 st)")
# extract data from user input
parts = weight.split(" ")
amount = float(parts[0])
unit = parts[1].lower()
# convert to Kg
if unit == "g":
amount = amount / 1000
elif unit == "st":
amount = amount * 6.35
elif unit == "lbs":
amount = amount * 0.454
# Display the results
print("Weight on Earth is {:.2}Kg".format(amount))
martian_weight = amount / 9.81 * 3.711
print("Weight on Mars is {:.2}Kg".format(martian_weight))
# Challenges
# 1) Make the weight display to 3 dp instead of 2
# 2) Calculate the weight on the moon (0.16 weight on Earth)
# 3) Make it so that the code doesn't crash with an invalid weight
print("Martian weight calculator")
weight = input("Please enter a weight (e.g. 13 st)")
# extract data from user input
parts = weight.split(" ")
amount = float(parts[0])
unit = parts[1].lower()
# convert to Kg
if unit == "g":
amount = amount / 1000
elif unit == "st":
amount = amount * 6.35
elif unit == "lbs":
amount = amount * 0.454
# Display the results
print("Weight on Earth is {:.2}Kg".format(amount))
martian_weight = amount / 9.81 * 3.711
print("Weight on Mars is {:.2}Kg".format(martian_weight))
# Challenges
# 1) Make the weight display to 3 dp instead of 2
# 2) Calculate the weight on the moon (0.16 weight on Earth)
# 3) Make it so that the code doesn't crash with an invalid weight
Write each prediction of what the program will output.
You can also predict variable values e.g. a = 10
This code has been sabotaged with some common mistakes. Can you find and fix them all?
Click on the button to add 5 more errors to the code
You get more points for each python skill you use from the keywords section
Click on "tests" to see a description of which python skills to aim for and keep track of which ones you've already used