Skip to content

Instantly share code, notes, and snippets.

@dobrienSTJ
Created September 14, 2016 17:03
Show Gist options
  • Save dobrienSTJ/0dc2770ac0f14616ccc836e7546aadd1 to your computer and use it in GitHub Desktop.
Save dobrienSTJ/0dc2770ac0f14616ccc836e7546aadd1 to your computer and use it in GitHub Desktop.
STJLOL-DOB-Bike Ireland
while True:
def welcomescreen():
print("Hello, and Welcome to Google Maps")
print("maps.google.ie")
print("As Dublin is the Capital City of Ireland, your travels will start from the city centre!")
print("This version of Google Maps is the Cycling Beta!")
print("When you add the amount of hours you would like to travel on your bike for we will give you a destenation you can travel to")
def googlemapsie():
destination=input("Please enter the amount of hours you would like to cycle for...")
if destination == "1":
print("Howth, Dublin or Bray, Wicklow")
elif destination == "2":
print("Donadea, Kildare or Ardgillan, Dublin")
elif destination == "3":
print("Glendalough, Wicklow or Trim, Meath")
elif destination == "4":
print("Rathdrum,Wicklow or Clogherhead, Louth")
elif destination == "5":
print("Tullamore, Offaly or Courtown, Wexford")
elif destination == "6":
print("Carlingford, Louth or Curracole, Wexford")
elif destination == "7":
print("Athlone, Westmeath or Armagh, UK")
elif destination == "8":
print("Carrick-On-Shannon, Leitrim or Kilmore Quay, Wexford")
elif destinatiom == "9":
print("Enniskillen, UK or Tramore, Waterford")
elif destination == "10":
print("Ennis, Clare or Portadown, UK")
elif destination == "11":
print("Sligo, Sligo or Galway, Galway")
elif destination == "12":
print("Bundoran, Donegal or Westport, Mayo")
def goodbye():
print("Thank You for using this Program!!!")
welcomescreen()
googlemapsie()
goodbye()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment