when I input python code:
today=datetime.datetime.now()
toda
today.weekday(),
Result is:
datetime.datetime(2012, 9, 18, 16, 53, 35, 124836)
1
But, should it be 2? Anything wrong or my mistake?
|
|
No, today is Tuesday, and that's weekday 1, following the documentation:
So Monday is If you want
|
||||
|
|
|
From the docs,
|
||||
|
|