我想获得当前时间在Python,并将它们分配到变量喜欢year,month,day,hour,minute。如何在Python 2.7中完成?
year
month
day
hour
minute
该datetime模块是您的朋友:
datetime
import datetime now = datetime.datetime.now() print(now.year, now.month, now.day, now.hour, now.minute, now.second) # 2015 5 6 8 53 40
您不需要单独的变量,返回datetime对象上的属性就可以满足您的所有需求。