Here is a beginner code that might work for you. Best of luck.   EK

b=[12, 20, 35]

for i in range(len(b)):
     if i==0:
          c=0
     else:
          c=b[i-1]
     for j in range(c, b[i]):
          print(i+1,j+1)
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor

Reply via email to