Answers for "find a specific value in a list python"

43

python find item in list

>>> ["foo", "bar", "baz"].index("bar")
1
Posted by: Guest on November-19-2019
1

python return specific elements from list

# Basic syntax:
# Using list comprehension:
selected_elements = [your_list[index] for index in indices]

# Example usage:
# Say you want to return the elements at indices 1, 4, 6
your_list = [5, 7, 23, 42, 11, 17, 27]
indices = [1, 4, 6]

# Running:
[your_list[index] for index in indices] # Would return:
--> [7, 11, 27]
Posted by: Guest on April-28-2021

Code answers related to "find a specific value in a list python"

Python Answers by Framework

Browse Popular Code Answers by Language