Hi I am trying to print this function but the output comes out with brackets and quotation marks... like this
('1', ',December', ',1984')
def date_string(day_num, month_name, year_num):
""" Turn the date into a string of the form
day month, year
"""
date = str(day_num) , "," + month_name , "," + str(year_num)
return date
print(date_string(1, "December", 1984))