I cant print out the second line
i tried to used divide by 2 and use two for loop to print it,
A=[1,2,3,4,5,6,7,8]
w=len(A)
T=w/2
for i in range(T):
for ii in range(T):
print A[ii]
A=[1,2,3,4,5,6,7,8]
i want to print like [1,2,3,4] and [5,6,7,8]