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

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

作者: 凤箫之舞 | 来源:发表于2020-07-06 17:35 被阅读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/tkdgqktx.html