in my Python program I work with lists, my list looks like this: List1=[[X1, X2, X3], [Y1, Y2, Y3]] I only want to display the value X1 from this list with Print.
I tried the following: print(List1[0]) but X1,X2,X3 is displayed. I only need the X1 displayed.
thanks for your help in advance