for [a,b,c] in A:
print(a,b,c)
This might help.
But if you have more number of elements in the lists or if elements in the nested lists are variable,This won't work.
Below code will print all elements in a nested line in single line.
for b in A:
for p in b:
print(p,end=" ")
print()