This code is what I came up with so far in reading out mm/dd/yyyy as month dd, yyyy what do I need to do to get the translation aspect of the code working?
date = input('Please enter a date in mm/dd/yyyy format: ')
month_list = ['January', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'November', 'December']
if date[0] == 0:
month_num = date[1]
print(month_list[month_num])
else:
month_num = (date[0] *10) + date[2]
print(month_list[month_num])