I'm using Python 3.8. I have an expression that gives me the local timezone
datetime.datetime.now(datetime.timezone(datetime.timedelta(0))).astimezone().tzinfo
It prints out "EDT". How do I take the above and convert it to words? E.g. I would want the result to be something like
America/New_York
Not sure what the proper terminology is for the above, but it's what you get if you run this in a shell
ls -la /etc/localtime | cut -d/ -f8-9