# -------------------------------------------------------------------
# Constants
# -------------------------------------------------------------------
TABLE_WIDTH = 85
# -------------------------------------------------------------------
# Global variables
# -------------------------------------------------------------------
raceTable = [["Slug", 0.1, 23.1],
["Snail", 0.2, 32.3],
["Worm", 0.1, 11.6],
["Frog", 0.5, 25.9],
["Ladybird", 1.0, 48.1]]
layout = ""
# ===> Initialize the variables
numberOfAnimals =
animal =
distance =
speed =
# -------------------------------------------------------------------
# Sub programs
# -------------------------------------------------------------------
def calculateSpeed(pDistanceM, pTimeS):
# ===> Convert the distance in metres to centimeters
distanceCM =
# Calculate the speed in centimeters per second
speedCMPerSecond = distanceCM / pTimeS
# ===> give back the speed in centimeters per second to the code that called calculateSpeed
# -------------------------------------------------------------------
# Main program
# -------------------------------------------------------------------
print ("Welcome to the Slow Animal Olympics:")
# ===> Display a blank line
print ("=" * TABLE_WIDTH)
# ===> Set up 4 columns, 20 characters wide. The first is left aligned and the rest are center aligned
layout = " "
# display headings
print(layout.format("Animal", "Distance(m)", "Time(s)", "Speed(cm/s)"))
print ("-" * TABLE_WIDTH)
# Work out the number of animals in the race
numberOfAnimals = len(raceTable)
# ===> Set up 4 columns as above but ensure that the speed is rounded to 2 decimal places
layout = " "
for i in range(numberOfAnimals):
# ===> get values from the data structure
animal =
distance =
time =
speed = calculateSpeed(distance, time)
print(layout.format(animal, distance, time, speed))
print ("=" * TABLE_WIDTH)
# -------------------------------------------------------------------
# Constants
# -------------------------------------------------------------------
TABLE_WIDTH = 85
# -------------------------------------------------------------------
# Global variables
# -------------------------------------------------------------------
raceTable = [["Slug", 0.1, 23.1],
["Snail", 0.2, 32.3],
["Worm", 0.1, 11.6],
["Frog", 0.5, 25.9],
["Ladybird", 1.0, 48.1]]
layout = ""
# ===> Initialize the variables
numberOfAnimals =
animal =
distance =
speed =
# -------------------------------------------------------------------
# Sub programs
# -------------------------------------------------------------------
def calculateSpeed(pDistanceM, pTimeS):
# ===> Convert the distance in metres to centimeters
distanceCM =
# Calculate the speed in centimeters per second
speedCMPerSecond = distanceCM / pTimeS
# ===> give back the speed in centimeters per second to the code that called calculateSpeed
# -------------------------------------------------------------------
# Main program
# -------------------------------------------------------------------
print ("Welcome to the Slow Animal Olympics:")
# ===> Display a blank line
print ("=" * TABLE_WIDTH)
# ===> Set up 4 columns, 20 characters wide. The first is left aligned and the rest are center aligned
layout = " "
# display headings
print(layout.format("Animal", "Distance(m)", "Time(s)", "Speed(cm/s)"))
print ("-" * TABLE_WIDTH)
# Work out the number of animals in the race
numberOfAnimals = len(raceTable)
# ===> Set up 4 columns as above but ensure that the speed is rounded to 2 decimal places
layout = " "
for i in range(numberOfAnimals):
# ===> get values from the data structure
animal =
distance =
time =
speed = calculateSpeed(distance, time)
print(layout.format(animal, distance, time, speed))
print ("=" * TABLE_WIDTH)
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