1#You can put multiple arrays in one array
2tests = [[1,2,3],["r",22,33]]
3#prints: [[1,2,3],['r',22,33]]
1# app.py
2
3listA = ['Stranger Things', 'S Education', 'Game of Thrones']
4
5if 'Dark' in listA:
6 print("Yes, 'S Eductation' found in List : ", listA)
7else:
8 print("Nope, 'Dark' not found in the list")
9