Rückgabepositon von ELE in List Python
#Returns the index number of the element/value in a list
x = ['a','b','c']
x.index('b')
NotACoder
#Returns the index number of the element/value in a list
x = ['a','b','c']
x.index('b')