1. #!/usr/bin/env python3
    2. # -*- coding: utf-8 -*-
    3. import time
    4. import datetime
    5. def test():
    6. otherStyleTime = time.strftime(
    7. "%Y-%m-%d %H:%M:%S", time.localtime(1659760440))
    8. print(otherStyleTime)
    9. # 2022-08-06 12:34:00
    10. test()