Help me in solving AO02 problem

My issue

My code

# Update the '_' in the code below to solve the problem

t = int(input())
for i in range(t):
    N = int(input())
    A = []
    for i in range(N):
        A.append(___)
    #print the array A
    print(___)              
    #print only the elements from array A
    print(*A)               
    A.sort(_________)
    #print the array A sorted in descending order
    print(A)                

Learning course: Python for problem solving - 2
Problem Link: CodeChef: Practical coding for everyone