>>>import datetime
>>>now = datetime.datetime.now()
>>>print ("Current date and time : ")
>>>print (now.strftime("%Y-%m-%d %H:%N:%S"))```
Error:
error: >>>import datetime
^
>>>import datetime
>>>now = datetime.datetime.now()
>>>print ("Current date and time : ")
>>>print (now.strftime("%Y-%m-%d %H:%N:%S"))```
Error:
error: >>>import datetime
^
it seems like that you have copied code from an interpreter or a book to a file and tried to run it with python command.
if you want to do so you need to remove >>>
from lines and run again.