how to get input in python 3 and use it in a list code example
Example: get list input from user in python
a = list(map(int,input("\nEnter the numbers : ").strip().split()))
a = list(map(int,input("\nEnter the numbers : ").strip().split()))