Answers for ".get list python"

1

get an item out of a list python

#to get the LAST item out of a list:
things = ["apple", "book", 3, ["another list", 85], "orange"]
last = things.pop()
print(last)
#it should output "orange"
Posted by: Guest on December-03-2020
2

python get element by index

# To return the index of the first occurence of element x in lst
ind = lst.index(x)
Posted by: Guest on March-26-2020

Python Answers by Framework

Browse Popular Code Answers by Language