how yto take list input in python code example
Example 1: taking array input in python
x=[int(input()) for i in range(int(input("How many elements are in list : ")))] print(x)
Example 2: reading a list in python
strings = list(map(str,input().split()))
numbers = list(map(int, input().split()))