I am trying to define a datetime object which represents January 1st, 2019 at 18:00 New York time.
I try:
import datetime
import pytz
ts = datetime.datetime(2019, 1, 1, 18, 0, 0, 0, tzinfo=pytz.timezone("US/Eastern"))
print(ts)
and I get:
2019-01-01 18:00:00-04:56
why -04:56?
I am using Python 3.7