View Single Post
  #9  
Old 14th October 2020, 11:54 AM
chook chook is offline
Member
 
Join Date: Jan 2019
Posts: 14
Default

#sorry for my rushed reply.
#above the for Venue in venues:
rowo = 0
for Venue in Venues:
#add row=rowo to your .grid( lines
#then at the bottom of that loop under
Wcondition_label.grid( column=4,sticky=W,row=rowo)
rowo += 1
#that will increment the row number
#you need row=rowo or whatever you choose to call it alongside the column=n
Reply With Quote