How can I print the next year if the current year is given in python using the simplest code, possibly in one line using datetime module.
|
Both date and datetime objects have a
If you have the current year in a variable, just add 1 directly, no need to bother with the datetime module:
If you have the date in a string, just select the 4 digits that represent the year and pass it to
Year arithmetic is exceedingly simple, make it an integer and just add 1. It doesn't get much simpler than that. If, however, you are working with a whole date, and you need the same date but one year later, use the components to create a new
or you can use the
Note that this can get a little tricky when
|
|||||||||
|
time.strptime('2005-11-11', '%Y-%m-%d').tm_year + 1– icecrime Jun 26 '12 at 11:42print year + 1– Matthias Jun 26 '12 at 12:14