I am trying to understand why printing a list that was assigned using another list will give None. The code is as follows.
A=[]
for i in range(12,4,-2):
A.append(i)
A_A=A.append(4)
print(A)
print(A_A)
In above code, why print(A_A) gives None?.
Thank you.