So I have an array. I want to take the first elements and break them into new line. So my array is =
a = [0, 0, 0, 0, 0, 0, 0, 0 , 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
How do I print it as
00000
00000
00000
00000
00000
Thanks.