Program an ASCII printer. I think this was OOP related question which I thought is as simple as ''.join(str(ord(c)) for c in s) I searched this question online but couldn't find an answer. I would love to know what the potential answer looks like.
''.join(str(ord(c)) for c in s)