Wie man den gesamten Index eines Zeichens einer Schnur in Python bekommt
word = 'Hello'
to_find = 'l'
# in one line
print([i for i, x in enumerate(word) if x == to_find])
Darkstar