Converting datetime to POSIX time

后端 未结 6 1900
忘了有多久
忘了有多久 2021-01-31 02:14

How do I convert a datetime or date object into a POSIX timestamp in python? There are methods to create a datetime object out of a timestamp, but I don\'t seem to find any obv

6条回答
  •  失恋的感觉
    2021-01-31 02:29

    For UTC calculations, calendar.timegm is the inverse of time.gmtime.

    import calendar, datetime
    d = datetime.datetime.utcnow()
    print calendar.timegm(d.timetuple())
    

提交回复
热议问题