Skip to content

Instantly share code, notes, and snippets.

@dobrienSTJ
Created September 14, 2016 17:00
Show Gist options
  • Save dobrienSTJ/d3148f48e7c3fe44de89f10a4c0d4826 to your computer and use it in GitHub Desktop.
Save dobrienSTJ/d3148f48e7c3fe44de89f10a4c0d4826 to your computer and use it in GitHub Desktop.
STJLOL-DOB-5K Pace Calculator
while True:
pace=input("Please enter your projected KM pace per minute")
if pace == "4:00min/km":
print("20:00")
elif pace == "4:30min/km":
print("22:30")
elif pace == "5:00min/km":
print("25:00")
elif pace == "5:30min/km":
print("27:30")
elif pace == "6:00min/km":
print("30:00")
elif pace == "6:30min/km":
print("32:30")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment