Convertir une liste en hexa en python

Fermé
H25 - 25 nov. 2011 à 11:54
heyquem Messages postés 759 Date d'inscription mercredi 17 juin 2009 Statut Membre Dernière intervention 29 décembre 2013 - 25 nov. 2011 à 19:07
Bonjour,


je suis débutant en Python. comment convertir une liste de chaine de caracteres en hexa ?

merci :)
A voir également:

1 réponse

heyquem Messages postés 759 Date d'inscription mercredi 17 juin 2009 Statut Membre Dernière intervention 29 décembre 2013 131
25 nov. 2011 à 19:07
bonsoir,

for c in 'abcd':
    o = ord(c)
    print c,o
    print hex(o),type(hex(o))
    print


print ''.join(hex(ord(c)) for c in 'abcd')

résultat:

a 97
0x61 <type 'str'>

b 98
0x62 <type 'str'>

c 99
0x63 <type 'str'>

d 100
0x64 <type 'str'>

0x610x620x630x64
0