Liste Python ASCII

import string
print(string.printable)
# prints all printable ascii caracters
Enoch