In Python, in a loop - Thas ASCIICodesStringtoString can be any length divided by 3.
Write a function called ASCIICodesStringToString that will accept a string of 3 digit codes which represent ASCII values (all padded to three digits with leading 0's when needed). The function should return the string equivalent assuming each 3 digit code can be converted to an ASCII value and from there into a letter. For instance:
>>> ASCIICodesStringToString("066065068")
'BAD'
def ASCIICodesStringToString(s):
result = ''
for i in range(0, len(s), 3):
d = s[i:i + 3]
result += chr(int(d))
return result
print(ASCIICodesStringToString("066065068"))

In Python, in a loop - Thas ASCIICodesStringtoString can be any length divided by 3. Write...