current date and time in python code example
Example 1: python get date and time
import datetime
now = datetime.datetime.now()
print ("Current date and time : ")
print (now.strftime("%Y-%m-%d %H:%M:%S"))
Example 2: python get the current date
import datetime
date_time = datetime.datetime.now()
print(date_time)
--> 2020-10-03 15:29:54.822751
date_time.strftime("%d/%m/%Y")
--> '03/10/2020'
date_time.strftime("%m/%d/%y")
--> '10/03/20'
date_time.strftime("%Y/%m/%d")
--> '2020/10/03'
date_time.strftime("%Y-%m-%d")
--> '2020-10-03'
date_time.strftime("%B %d, %Y")
--> 'October 03, 2020'
Directive Description Example
%a Weekday, short version Wed
%A Weekday, full version Wednesday
%w Weekday as a number 0-6, 0 is Sunday 3
%d Day of month 01-31 31
%b Month name, short version Dec
%B Month name, full version December
%m Month as a number 01-12 12
%y Year, short version, without century 18
%Y Year, full version 2018
%H Hour 00-23 17
%I Hour 00-12 05
%p AM/PM PM
%M Minute 00-59 41
%S Second 00-59 08
%f Microsecond 000000-999999 548513
%z UTC offset +0100
%Z Timezone CST
%j Day number of year 001-366 365
%U Week number of year 00-53 52
%c Local version of date and time Mon Dec 31 17:41:00 2018
%x Local version of date 12/31/18
%X Local version of time 17:41:00
%% A % character %
Example 3: print current date and time in python
from datetime import datetime
now = datetime.now()
print("date and time now: ", now)
dt = now.strftime("%d/%m/%Y %H:%M:%S")
print("date and time now: ", dt)
Example 4: print time in python
import time
t = time.localtime()
current_time = time.strftime("%H:%M:%S", t)
print(current_time)
Example 5: how to get current date in python
current_date = datetime.date.today()
Example 6: how to show today time in python
from datetime import datetime
import pytz
tz_NY = pytz.timezone('America/New_York')
datetime_NY = datetime.now(tz_NY)
print("NY time:", datetime_NY.strftime("%H:%M:%S"))
tz_London = pytz.timezone('Europe/London')
datetime_London = datetime.now(tz_London)
print("London time:", datetime_London.strftime("%H:%M:%S"))