1
gaoyadianta OP 坐等高人
|
2
gaoyadianta OP 再顶一下
|
3
kemad 2018-05-09 14:31:11 +08:00 1
#!/usr/bin/python
# -*- coding: utf-8 -*- 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 |
4
gaoyadianta OP @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 请问这个要怎么处理呢 |
5
gaoyadianta OP |
6
gaoyadianta OP @kemad 搞定了,那一行需要加一个 tab,非常非常感谢!
太牛了! |