So i tried using the .encode on a str, but the encoded message always turned out as b\'str here\'
m = \'hello\' t=m.encode(encoding=\'UTF-8\') print(t) <