show the element in the list python code example
Example 1: reading a list in python
strings = list(map(str,input().split()))
numbers = list(map(int, input().split()))
Example 2: python lists
games = ['Fortnite', 'CS:GO', 'Temple Run']
print(games)