Python problem doubt

sir if given the size of array as n how to take as input the n elements of array in the same line

@qudsiya you can do this
N=int(input()) #take the size

Array=list(map(int, input().split(‘ ‘)[:N])) #creates list of N elements

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.