Reputation: 5901
I have a timezone aware datetime object, which, if printed contains: 2013-03-04 18:00:00+01:00
. But I always fail to understand how to read them. Does this refers to 19:00 local time or to 18:00 local time?
Upvotes: 0
Views: 87
Reputation: 599470
That means 18:00 local time, in a place which is +1 hour from UTC (so Western Europe, for example).
Upvotes: 2