python add one day to a date Posted on 2018-09-27 | Edited on 2018-07-20 | In python description: python add one day to a date python datetime date add one day123456import datetimed = datetime.datetime.strptime('2018-02-01', '%Y-%m-%d')# d# datetime.datetime(2018, 2, 1, 0, 0)d + datetime.timedelta(days=1)# datetime.datetime(2018, 2, 2, 0, 0) more on search4fan.github.io Post author: killfun Post link: http://search4fan.github.io/post/python_datetime_add_day.html Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.