Re: [Tutor] Creating tables in Tkinter

2017-02-20 Thread Alan Gauld via Tutor
On 19/02/17 16:18, Pooja Bhalode wrote: > Hi, > > I am trying to create a simple table. But I was wondering how do I get the > title of the table to span over multiple columns in the first row. > Code: > > from Tkinter import * > > root = Tk() > root.geometry("700x500") > Label(root, text = "Tab

[Tutor] Creating tables in Tkinter

2017-02-19 Thread Pooja Bhalode
Hi, I am trying to create a simple table. But I was wondering how do I get the title of the table to span over multiple columns in the first row. Code: from Tkinter import * root = Tk() root.geometry("700x500") Label(root, text = "Table 1").grid(row = 0, column = 0, sticky = W) Label for i in ra