Answers for "python check list"

2

check if list of list python

for item in list_of_lists:
      isinstance(item, list)
Posted by: Guest on February-06-2021
2

python how to check in a list

# app.py

listA = ['Stranger Things', 'S Education', 'Game of Thrones']

if 'Dark' in listA:
    print("Yes, 'S Eductation' found in List : ", listA)
else:
    print("Nope, 'Dark' not found in the list")
Posted by: Guest on August-24-2020

Python Answers by Framework

Browse Popular Code Answers by Language