int_to_ascii

def int_to_ascii(crypt)

Algorithm

Utils method : integer to ascii converter.

Description

Type

Description

crypt

int list

The int list to convert

Returns

str : The converted ASCII string since int list.


Source Code

res = ''
for i in range (0,len(crypt)):
        res+=chr(crypt[i])
return res