首页 > 代码库 > WeChall_Training: ASCII (Training, Encoding)
WeChall_Training: ASCII (Training, Encoding)
In a computer, you can only work with numbers.
In this challenge you have to decode the following message, which is in ASCII.
84, 104, 101, 32, 115, 111, 108, 117, 116, 105, 111, 110, 32, 105, 115, 58, 32, 98, 111, 108, 102, 111, 110, 111, 105, 97, 101, 102, 98
Useful link: http://asciitable.com
解题:
简单ascii码转换。
a = ‘84, 104, 101, 32, 115, 111, 108, 117, 116, 105, 111, 110, 32, 105, 115, 58, 32, 98, 111, 108, 102, 111, 110, 111, 105, 97, 101, 102, 98‘a = a.split(‘, ‘)for each in a: print(chr(int(each)),end = ‘‘)
WeChall_Training: ASCII (Training, Encoding)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。