z_ascii.py

Created by cent20

Created on April 19, 2021

540 Bytes


print("été")

print("Table ASCII NumWorks")
print("Enter ou OK pour continuer")
input()

for i in range(128):
  print("Caractère ASCII",i, chr(i))
  if i%10==0 and i!=0:
    input()

print("="*29)

print("Table ASCII étendue NumWorks")
print("Enter ou OK pour continuer")
input()

for i in range(128,256,1):
  print("Caractère ASCII",i, chr(i))
  if i%10==0 and i!=0:
    input()

print("Table ASCII 256+ NumWorks")    
for i in range(256,400,1):
  print("Caractère ASCII",i, chr(i))
  if i%10==0 and i!=0:
    input()