python 获取当前年份,日,月,小时,分钟,秒
程序员文章站
2022-04-19 19:05:58
...
import datetime from datetime
def someMethod():
currentSecond= datetime.now().second
currentMinute = datetime.now().minute
currentHour = datetime.now().hour
currentDay = datetime.now().day
currentMonth = datetime.now().month
currentYear = datetime.now().year
datetime.now().microsecond
作者:静心_18e1
链接:https://www.jianshu.com/p/dceed7a93381
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。
上一篇: TIJ Learning:对象引用
下一篇: mysql中获取当前年、月、日