My code loads the title of a youtube video.
I have problem with accented and special characters
For Example: i'm getting this title in string format: LES \\xc9TUDES DE M\\xc9DECINE
I need to remove the double backslash to get LES \xc9TUDES DE M\xc9DECINE
So i can be able to print it correctly in python 3:
print(`LES \xc9TUDES DE M\xc9DECINE`)
>>LES ÉTUDES DE MÉDECINE
Thank you