Lokal ke ISO 8601 dengan informasi zona waktu (Python 3):
import datetime
datetime.datetime.now().astimezone().isoformat()
>>> 2020-03-20T14:32:16.458361+13:00
Puzzled Puffin