caracteres_ascii.py

Created by ptitjoz

Created on October 23, 2018

109 Bytes

affiche les caractères ascii de 64 à 150


#V1 ascii
#from kandinsky import *
for i in range(64,151):
  print(i,hex(i),chr(i))