python current year code example

Example 1: get the current year in python

import datetime
now = datetime.datetime.now().year
print(now)

Example 2: python get day month year

import datetime
now = datetime.datetime.now()
print(now.year, now.month, now.day, now.hour, now.minute, now.second)

Example 3: how to get the current year in python

from datetime import date
current_date = date.today() 
print("Current date: ", current_date)
print("Current year:", current_date.year)

Example 4: getting current year in python

import datetime
now = datetime.datetime.now()
print(now.year, now.month, now.day, now.hour, now.minute, now.second)
do not copy me