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