Dekodować Python sznurka binarnego
test_encoded = 'Python is awesome'.encode('ascii')
test_decoded = test_encoded.decode('ascii')
CompSciGeek
test_encoded = 'Python is awesome'.encode('ascii')
test_decoded = test_encoded.decode('ascii')