欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

相关标签: python