Accessing all elements in nested lists (1)

We have nested lists:

samples = [["x","y","z"],[12,32,7],[12,40,7]]

Let's make a program that prints each individual value, formatted:

x       y       z
12      32      7
12      40      7