>>96958930DAMNIT AAAAAAAAAAAA... it keeps happening...
Corrections:
ListA = [ [84, 104, 105, 115], [112, 111, 115, 116], [105, 115], [105, 110], [112, 121, 116, 104, 111, 110], [97, 110, 100], [105, 115], [65, 73] ]
ListB = []
ListC = []
for list in ListA:
\t for ele in list:
\t \t Char = chr(ele)
\t \t ListB.append(Char)
\t word = "".join(ListB)
\t ListB = []
\t ListC.append(word)
Post = " ".join(ListC)
print(Post)