Need help with exercise

Well, I have no idea how to solve it. It has been giving the same mistake.
So this is exercise https://www.hackinscience.org/exercises/friday-the-13th.
My code:
import datetime

d = datetime.date.today()

def friday_the_13th():
if d.day == 13 and d.weekday() == 4:
return str(datetime.date.today())
year = d.year
day = 13
for month in range(1,13):
t = datetime.date(year=year, month = month, day=day)
if t.day==13 and t.weekday()==4 and t.month > d.month and d.day < 13:
return str(t)
if month==12:
for month1 in range(1,13):
t = datetime.date(year=year+1, month=month1, day=day)
if t.day == 13 and t.weekday() == 4:
return str(t)
if name == “main”:
print(friday_the_13th())

here are a few variations that I found:
datetime

#script to print actual date year month date hour minute seconds in human readable format
import datetime
now = datetime.datetime.now()
print(“current date and time is:”)
print(now.strftime("%y-%m-%d %H:%M:%S"))

or for one line:

#script to print actual date year month date hour minute seconds in human readable format
import datetime
now = datetime.datetime.now()
print(now.strftime(“Today is-%y-%m-%d-and it is-%H:%M:%S”))

or

#script to print actual date year month date hour minute seconds in human readable format
import datetime
now = datetime.datetime.now()
print (now)

#script to print actual date year month date hour minute seconds in human readable format
import datetime
now = datetime.datetime.now()
print (now.strftime (“Today is,%y-%m-%d, and it is, %H:%M:%S”))

#script to print actual date year month date hour minute seconds in human readable format
import datetime
now = datetime.datetime.now()
print (now.strftime (“Today is,%B-%d-%Y, and it is, %H:%M:%S”))