-
Tuple order is as you insert values into the tuple. They’re not going to be sorted as I think you’re asking.
zip
will again, retain the order you inserted the values in. -
It’s an acceptable method, but I have 2 alternate suggestions: Use the copy module, or use
dtg1 = mdtimes[:]
. -
Sounds reasonable.