Si vous souhaitez traiter votre chaîne un caractère à la fois. vous avez différentes options.
uhello = u'Hello\u0020World'
Utilisation de la compréhension de liste:
print([x for x in uhello])
Production:
['H', 'e', 'l', 'l', 'o', ' ', 'W', 'o', 'r', 'l', 'd']
En utilisant la carte:
print(list(map(lambda c2: c2, uhello)))
Production:
['H', 'e', 'l', 'l', 'o', ' ', 'W', 'o', 'r', 'l', 'd']
Appeler la fonction de liste intégrée:
print(list(uhello))
Production:
['H', 'e', 'l', 'l', 'o', ' ', 'W', 'o', 'r', 'l', 'd']
Utilisation de la boucle for:
for c in uhello:
print(c)
Production:
H
e
l
l
o
W
o
r
l
d