How to get current time in python and break up into year, month, day, hour, minute?

后端 未结 11 1054
故里飘歌
故里飘歌 2020-11-28 01:18

I would like to get the current time in Python and assign them into variables like year, month, day, hour, minute

11条回答
  •  执念已碎
    2020-11-28 01:59

    Here's a one-liner that comes in just under the 80 char line max.

    import time
    year, month, day, hour, min = map(int, time.strftime("%Y %m %d %H %M").split())
    

提交回复
热议问题