importdatetimeimportpytzutc_now=datetime.datetime.utcnow()# Get current time in UTCutc_timezone=pytz.utcutc_now=utc_timezone.localize(utc_now)# Localize the time as UTC# Convert to another timezone, e.g., 'America/New_York'new_timezone=pytz.timezone('Asia/Shanghai')new_timezone_time=utc_now.astimezone(new_timezone)print(new_timezone_time.strftime('%Y-%m-%d %H:%M:%S %Z%z'))# Display time in the new timezone