How to replace any element from a list with its ordinal number using Python

1 Answer

0 votes
lst = ["a", "b", "c", "c", "b", "d", "e", "f", "g", "f"]
toreplace = {"b", "f"}

result = [i + 1 if x in toreplace else x for i, x in enumerate(lst)]
print(result)



'''
run:
 
['a', 2, 'c', 'c', 5, 'd', 'e', 8, 'g', 10]
 
'''
 

 



answered Feb 14 by avibootz
...