只说一个,是八进制,下面是解码脚本 环境python3
```python # -*-coding:utf-8-*- # Author: Akkuman # Blog: www.hacktech.cnTust4You的问题是八进制,所以八进制转ascii即可
解码问题
print(“Please input the code what you see on register’s page of Tust 4 You:”) encode_code = input() encode_list = encode_code.split() print("\nthe question is\n") for i in encode_list: i = int(i,8) print(chr(i), end="")
|
|