Python (or Pandas) – Getting Current Dates and Times

Import libs and obtain current date or time information you need:

from datetime import datetime

currentSecond= datetime.now().second
currentMinute = datetime.now().minute
currentHour = datetime.now().hour

currentDay = datetime.now().day
currentMonth = datetime.now().month
currentYear = datetime.now().year

Leave a Reply