Answers for "if condition to find item in list python"

9

Check if element in list Python

listA = [item1, item2, item3]
if item4 in listA:
  print('yes, item4 is in the list')
else:
  print('no, item4 is not in the list')
Posted by: Guest on November-21-2020

Code answers related to "if condition to find item in list python"

Python Answers by Framework

Browse Popular Code Answers by Language