Answers for "list [-2] in 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

Python Answers by Framework

Browse Popular Code Answers by Language