Published
- 1 min read
get list input from user in python
The solution for this is noted below
get list input from user in python
Solution
a = list(map(int,input("\nEnter the numbers : ").strip().split()))
Try other methods by searching on the site. That is if this doesn’t work