Back to General discussions forum
Can anyone tell me how to convert decipher value(int) to text in python
You mean the "ASCII" code to text? chr(65) = "A". ord("A") = 65
no I have decrypted value(not ASCII code) which is a long integer.i want to convert back to text
There's a separator between the original text (ascii codes) and the added random stuff.
can u tell me the algo behind it
Thanks..I have solved it...forgot the separator part