décoder la chaîne binaire python

    test_encoded = 'Python is awesome'.encode('ascii')
    test_decoded = test_encoded.decode('ascii')
CompSciGeek