您的位置:首页 > 大数据 > 人工智能

[WeChall] Training: ASCII (Training, Encoding)

2014-11-09 11:32 706 查看
Question:


Training: ASCII (TrainingEncoding)

Encodings - American Standard Code for Information Interchange
In a computer, you can only work with numbers.

In this challenge you have to decode the following message, which is in ASCII.

Useful link: http://asciitable.com
solution:

    Just convert ascii to Char. 

#!/usr/bin/env python
f = file('crypto.txt','r+')
s = f.read().split(',')
cryptos = ""
for i in s:
cryptos += chr(int(i))
print cryptos
</pre><div><pre name="code" class="python" style="color: rgb(41, 70, 102); font-size: 14px;">The solution is: hpdpsablplaf


Submit the string hpdpsablplaf

Success!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  ctf