Windows 10家庭中文版,Python 3.6.4, 下午复习了一下time模块,熟悉一下其中的各种时间格式的转换:时间戳浮点数.struct_tm.字符串,还算顺利. 可是,测试其中的time.tzname属性时遇到了乱码,如下: >>> import time >>> time.tzname ('Öйú±ê׼ʱ¼ä', 'ÖйúÏÄÁîʱ') 返回了一个元组,可是,乱码怎么看得懂! 补充:time.tzname A tuple of two stri…
bytes object b = b"example" str object s = "example" #str to bytes bytes(s, encoding = "utf8") #bytes to str str(b, encoding = "utf-8") #an alternative method #str to bytes str.encode(s) #bytes to str bytes.decode(b…