美文网首页
python 获取当前年份,日,月,小时,分钟,秒

python 获取当前年份,日,月,小时,分钟,秒

作者: 静心_18e1 | 来源:发表于2018-01-03 17:29 被阅读0次
    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
    

    相关文章

      网友评论

          本文标题:python 获取当前年份,日,月,小时,分钟,秒

          本文链接:https://www.haomeiwen.com/subject/ouqknxtx.html