
xxxxxxxxxx
#Football Results Tracker - www.101computing.net/football-results-tracker/
def displayBanner():
print(" ____________________________")
print(" | |")
print(" | Premier League |")
print(" | Results Tracker | ")
print(" | | ")
print("___|__________________________|___")
print("")
def displayMenu():
print("")
print(" > Option 1: Add a new match score")
print(" > Option 2: Display all scores")
print(" > Option 3: Search all scores of a team")
print(" > Option 4: Exit")
print("")
#Main Program Starts Here
displayBanner()
displayMenu()
choice = input("Choose an option between 1 and 4.")
if choice == "4":
print("Good bye!")
task_alt