Hi everyone,
in python3, how can I convert strings into bytes using the encode procedures?
String is not constant, bytes must be in range 0x00 - 0xFF and only one byte per character.
The procedure , b=str.encode('utf_8') ,does not work as I need.
regards