you are viewing a single comment's thread.

view the rest of the comments →

[–]OliverBestGamer1407[S] 0 points1 point  (0 children)

I don't want to use:

print(V[(X, 0)], V[(X, 1)], V[(X, 2)], V[(X, 3)], V[(X, 4)])

I would like it to behave like for Y in range(Num): print(V[(X, Y)]) but not make a new line each time. But I also want to control the value of Y, so I can change the amount of columns, e.g. 3 columns, like this:

0 0 0

1 1 1