Answers for "return positon of ele in list python"

0

return positon of ele in list python

#Returns the index number of the element/value in a list
x = ['a','b','c']
x.index('b')
Posted by: Guest on August-09-2021

Python Answers by Framework

Browse Popular Code Answers by Language