autoconfig
cgi
cross_compile
.gitignore
1st_day_of_month.cpp
alternatice_bracket.c
ascii_injection.py
ascii_nn_input_helper.py
bind_test.sh
blumba.html
bootrap.html
brython_hw.html
c.php
c_old_argument_notation.c
cnn.c
comp.c
conditional_const.c
const.c
cpp_regex_error.cpp
current_year.cpp
dda2.cpp
dog.jpg
dog2.jpg
dpt.py
dropdown.html
else_while.c
17 lines
215 B
Python
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('')
|
|
|