Python datetime / time conversions « SaltyCrane Blog

Python datetime / time conversions « SaltyCrane Blog

# timestamp to datetime object in local time
timestamp = 1226527167.595983
dt_obj = datetime.fromtimestamp(timestamp)
print repr(dt_obj)

你可能感兴趣的:(conversion)