Answers for "datetime days python"

19

python date + days

import datetime

today = datetime.date.today()

next_week = today + datetime.timedelta(days=7)
Posted by: Guest on October-27-2021
8

datetime year python

import datetime
now = datetime.datetime.now()
print(now.year, now.month, now.day, now.hour, now.minute, now.second)
Posted by: Guest on May-12-2020

Python Answers by Framework

Browse Popular Code Answers by Language