Logan Deniston

Results 1 comments of Logan Deniston

Actually, `time.time()` _is_ UTC. The confusion most likely stems from comparing timestamps from `datetime.datetime.utcnow()` vs `datetime.datetime.now()` I'm currently in EDT, so UTC-04. Running the code below: ``` import datetime import...