I have the following code and am getting the above error. Since I'm new to python I'm having trouble understanding the syntax here and how I can fix the error:
if not start or date < start: start = date
|
I have the following code and am getting the above error. Since I'm new to python I'm having trouble understanding the syntax here and how I can fix the error:
|
|||||||||
|
|
There is a datetime.date() method for converting from a datetime to a date, but no stdlib method to do the opposite conversion. |
|||||
|
|
You can use the
|
|||
|
|
|
Your variables start and date are of different type I guess. One is a datetime and one is a date. You may have to show more code in order to get decent help. But look at this: http://docs.python.org/library/datetime.html#available-types It tells you that datetime.datetime has attributes like day, month and year, just like datetime.date. |
|||
|
|