Answers for "get the current time in python using datetime"

3

python get current time

---------------------------------------------------------
import datetime
 
currentDateTime = datetime.datetime.now()
print(currentDateTime)
---------------------------------------------------------
OR
---------------------------------------------------------
from datetime import datetime
 
currentDateTime = datetime.now()
print(currentDateTime)
---------------------------------------------------------
OR
---------------------------------------------------------
import datetime

print(datetime.datetime.now())
---------------------------------------------------------
OR
---------------------------------------------------------
from datetime import datetime
 
print(datetime.now())
---------------------------------------------------------
Posted by: Guest on February-16-2021
0

time current time python time.time

time.time()
Posted by: Guest on January-11-2021

Code answers related to "get the current time in python using datetime"

Python Answers by Framework

Browse Popular Code Answers by Language