I have three list:
alist=[1,2,3,4,5]
blist=['a','b','c','d','e']
clist=['@','#','$','&','*']
I want my output in this format:
1 2 3 4 5
a b c d e
@ # $ & *
I am able to print in correct format but when i am having list with many elements it's actually printing like this:
1 2 3 4 5 6 ..........................................................................
................................................................................
a b c d e ............................................................................
......................................................................................
@ # $ & * .............................................................................
.......................................................................................
but I want my output like this:
12345....................................................................
abcde...................................................................
@#$&*...................................................................
............................................................... {this line is from alist}
................................................................ {this line is from blist}
................................................................ {this line is from clist}