Using the Python docs, and strftime and strptime, make a script that accepts a month and day date in whatever format you want that returns a link to Wikipedia for that date. Be sure you tell the user how to format their data for you.
import datetime
answer_format = '%m/%d'
link_format = '%b_%d'
link = 'https://en.wikipedia.org/wiki/{}'
while True:
answer = input("What date would you like? Please use the MM/DD format. Enter 'quit' to quit. ")
if answer.upper() == 'QUIT':
break
try:
date = datetime.datetime.strptime(answer, answer_format)
output = link.format(date.strftime(link_format) + "\n\n")
print(output)
except ValueError:
print("That's not a valid date. Please try again. \n")