python lists example
Example 1: lists in python
lst = ["abc", 34, True, 40, "male"]
for i in lst:
print(i)
Example 2: python lists
games = ['Fortnite', 'CS:GO', 'Temple Run']
print(games)
Example 3: lists in python
[0,'',True,5.2,False,[1,2]]