Answers for "python year now"

11

get the current year in python

import datetime
now = datetime.datetime.now().year
print(now)
Posted by: Guest on May-12-2020
3

how to get the current date hour minute month year in python

########################################################################
import datetime
now = datetime.datetime.now()
print(now.year, now.month, now.day, now.hour, now.minute, now.second)
########################################################################
from datetime import *
now = datetime.now()
print(now.year, now.month, now.day, now.hour, now.minute, now.second)
########################################################################
Posted by: Guest on September-03-2020
1

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)
Posted by: Guest on December-16-2020

Python Answers by Framework

Browse Popular Code Answers by Language