I've just started to learn to code, python specifically. I am taking the classes on codeacademy, and had some limited knowledge from years ago before doing so. I am up to like the 8 or 9th class on there.
I decided I would some of things to use and code in my shell on my local PC instead of there's online. I want to write the date and display it to the user, however no matter what I do the code I am trying to use displays a syntax error, or unsupported type error. Any help would be much appreciated. This code seems work fine on the codeacademy website. I am running the newest version of python 3.4
from datetime import datetime
now = datetime.now()
print '%s/%s/%s %s:%s:%s' % (now.month, now.day, now.year, now.hour, now.minute, now.second)