list_of_inputs=list(map(int,input().split()))
Here is what the above code is Doing:
1. We are taking a list of inputs from the user.
2. We are converting the input to integer.
3. We are storing the input in a list.
4. We are printing the list.
list_of_inputs=list(map(int,input().split()))
Here is what the above code is Doing:
1. We are taking a list of inputs from the user.
2. We are converting the input to integer.
3. We are storing the input in a list.
4. We are printing the list.