python get the date and time

 

>>> import datetime
>>> 
>>> i = datetime.datetime.now()
>>> print(i.year,i.month,i.day,i.hour,i.minute,i.second)
2020 12 22 06 12 26
>>> 

 

Guess you like

Origin www.cnblogs.com/sea-stream/p/12078850.html