Comment supprimer les accents?
Fermé
sulot
Messages postés
94
Date d'inscription
jeudi 17 mars 2011
Statut
Membre
Dernière intervention
6 novembre 2016
-
25 oct. 2015 à 10:20
python99 Messages postés 2 Date d'inscription lundi 2 novembre 2015 Statut Membre Dernière intervention 2 novembre 2015 - 2 nov. 2015 à 13:38
python99 Messages postés 2 Date d'inscription lundi 2 novembre 2015 Statut Membre Dernière intervention 2 novembre 2015 - 2 nov. 2015 à 13:38
A voir également:
- Python supprimer accents
- Supprimer une page word - Guide
- Supprimer compte instagram - Guide
- Supprimer pub youtube - Accueil - Streaming
- Citizen code python - Accueil - Outils
- Impossible de supprimer un fichier - Guide
1 réponse
python99
Messages postés
2
Date d'inscription
lundi 2 novembre 2015
Statut
Membre
Dernière intervention
2 novembre 2015
4
2 nov. 2015 à 13:38
2 nov. 2015 à 13:38
Bien le bonjour à toi voila pour ta gouverne :
import unicodedata
s = 'Découvrez tous les logiciels à télécharger'
s
'D\xc3\xa9couvrez tous les logiciels \xc3\xa0 t\xc3\xa9l\xc3\xa9charger'
s1 = unicode(s,'utf-8')
s2 = unicodedata.normalize('NFD', s1).encode('ascii', 'ignore')
s2
'Decouvrez tous les logiciels a telecharger'
j'espère t'avoir aidé ;)
import unicodedata
s = 'Découvrez tous les logiciels à télécharger'
s
'D\xc3\xa9couvrez tous les logiciels \xc3\xa0 t\xc3\xa9l\xc3\xa9charger'
s1 = unicode(s,'utf-8')
s2 = unicodedata.normalize('NFD', s1).encode('ascii', 'ignore')
s2
'Decouvrez tous les logiciels a telecharger'
j'espère t'avoir aidé ;)