# Tust4You的问题是八进制,所以八进制转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 isn") for i in encode_list: i = int(i,8) print(chr(i), end="")
近期评论