版权归作者所有,转载请注明出处
地址:https://www.wechall.net/challenge/training/encodings/ascii/index.php
题目说需要按照ascii对数字进行解析。那就写个代码,将数字转为字符串,应该可以得到结果。
代码如下:
def ascii():
test = [84, 104, 101, 32, 115, 111, 108, 117, 116, 105, 111, 110, 32, 105, 115, 58, 32, 104, 102, 105, 109, 103, 109, 115, 102, 114, 115, 108, 108]
for i in test:
print(chr(i), end="")
结果如图: