Convert string to bytes object python
1 2 3 | my_simple_string = 'test'
bytes_obj = bytes(my_simple_string, 'utf-8')
print(bytes_obj)
|
Convert string to bytes object python
1 2 3 | my_simple_string = 'test'
bytes_obj = bytes(my_simple_string, 'utf-8')
print(bytes_obj)
|