[Solved] Create a numeric string using three variables


Thank you i was searching about something like that

s=input('Enter S')
e=input('Enter E')
A=[]
for x in range (s,e):
 A.append(x)
 if len(A)==3:
  print(A[0],A[1],A[2])
  del A[0:3]

Sorry i was not helpful in describe what i want

solved Create a numeric string using three variables