tests/Python/ascii_nn_input_helper.py
2024-03-10 16:02:52 +01:00

17 lines
215 B
Python

#!/bin/python3
input = [
" # # ",
"/''--__",
"_---'''",
]
o = []
for i in input:
for h in i:
#print(f" '{h}' (#{round(ord(h)/127, 2)});", end='')
print(f"{round(ord(h)/127, 2)}, ", end='')
#print('')