orig = '孃䱋崸㔴㔵' temp = orig.decode('utf-8').__repr__().replace("\\u", "")[2:-1] text = '' for i in range(len(temp)/2): text += chr(int(temp[2*i:2*i+2], 16)) print text
gaoyadianta
2018-05-09 14:47:53 +08:00
@kemad 不好意思,我不是搞软件,玩的不太 6. 我把你的代码复制到一个.py 文件,然后运行 python ex_code.py 出现了下面的错误: root@Linux-host:/home/test# python ex_code.py File "ex_code.py", line 8 text += chr(int(temp[2*i:2*i+2], 16)) ^ IndentationError: expected an indented block 请问这个要怎么处理呢
gaoyadianta
2018-05-09 14:53:13 +08:00
@kemad Python 2.7.3 (default, Oct 26 2016, 21:01:49) [GCC 4.6.3] on linux2 这是我的 python 版本