Summer is coming guys.
Im so ready to be on all the time.
I really need a break!
Omgosh you are doing Python too.
I just started Iam learning from Code Academy
So far it is easy.
Mostly because Im 15% through
I have learned this: Which implements the current time.
from datetime import datetime
now = datetime.now()
print now.year
print now.month
print now.day
print now.hour
print now.minute
print now.second
print '%s/%s/%s %s:%s:%s' % (now.month, now.day, now.year, now.hour, now.minute, now.second)
Result:
2015
4
19
18
51
11
4/19/2015 18:51:11
None
currently learning Conditionals & Control Flow
Last edited by frandavi; Apr 19, 2015 at 08:53 PM.