Answers for "how to check if value is in a list python"

0

Python if in list

listttt = ["eee", "yee"]
if "yee" in listttt:
  print("yee")
else:
  print("no.")
Posted by: Guest on October-26-2021

Code answers related to "how to check if value is in a list python"

Python Answers by Framework

Browse Popular Code Answers by Language