<html>
  <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <pre><code>I found that it is a concept LMT local mean time can express my meaning.

import pytz,datetime
tz1 = pytz.timezone('Asia/Shanghai')
tz1
<DstTzInfo 'Asia/Shanghai' LMT+8:06:00 STD>
>>> str(tz1)
'Asia/Shanghai'
</code>
<code><code>tz2 = pytz.timezone('Asia/Urumqi')</code>
tz2
<DstTzInfo 'Asia/Urumqi' LMT+5:50:00 STD>

the time difference between shanghai and Urumqi is about 2 hours in the form of LMT.

now ,how can i get the output of </code>`<code>LMT+8:06:00</code>` in <code><DstTzInfo 'Asia/Shanghai' LMT+8:06:00 STD></code>

str(tz1) or str(tz2) can not do that.
</pre>
  </body>
</html>