Guest User

Untitled

a guest
Jul 21st, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. y1=0
  2. lista= []
  3. while y1 < x1:
  4. y1= y1+1
  5.  
  6. lista.append(y1)
  7.  
  8.  
  9. for y1 in lista:
  10. self.num= Label(self.root, text= y1,font= fonte, bg=cor).grid(row=(9+y1), column=0,sticky= NW)
  11. self.cxx = Entry(self.root)
  12. self.cxx["width"] = 4
  13. self.cxx["font"] = fonte
  14. self.cxx.grid(row=(9+y1), column=1)
Add Comment
Please, Sign In to add comment