Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 227 Bytes

The Numbers.md

File metadata and controls

10 lines (9 loc) · 227 Bytes

The Numbers

l = [16, 9 , 3, 15, 3, 20, 6, '{', 20, 8, 5, 14, 21, 13, 2, 5, 18, 19, 13, 1, 19, 15, 14, '}']
for x in l:
    if type(x) == int:
        print(chr(x+64), end="")
    else:
        print(x, end="")