5 lines
93 B
Python
5 lines
93 B
Python
some_chars = [65,66,67,68]
|
|
|
|
print(bytes('Homer', encoding='utf-8'))
|
|
print(bytes(some_chars))
|