I want to make a program that will print out the next line after printing first 5 element. Example :
a = ("200","qwdecf",'acfsdvwvg','dfwrvgrwb','fwrfw','fwfw','wefweg53',"1233",'2344','09845')
Output
"200","qwdecf",'acfsdvwvg','dfwrvgrwb','fwrfw'
'fwfw','wefweg53',"1233",'2344','09845'
Most of them I found was using integers, not strings.. So I'm a little stuck. Thanks for helping.
This is my code now:
line = 0
for i in range(len(a)):
line+=1
print(a[:6])