[Tutor] Matplotlib in Tkinter

2017-02-19 Thread Pooja Bhalode
Hi, I am trying to create a graph in Tkinter window. And following is a snipet of the code. Code: simroot = Toplevel(root) simroot.title("Simulation of experiments") Label(simroot, text = "Displaying concentration profiles with respect to time:").pack(side = TOP) Label(simroot, text = "Select

[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

[Tutor] Resources/Books for teaching OOP in Python and Tkinter

2017-02-19 Thread Marie Shaw via Tutor
I am a teacher of 16-18 year olds. Since September, my classes have been learning to program in Python, using all of the basics in console mode. I now need to teach them OOP using Python, and GUI programming using Python. Please could someone one point me in the direction of a good book, or some

Re: [Tutor] Problems with matplotlib

2017-02-19 Thread Pooja Bhalode
Hi Peter, Thank you for that advice, that worked after I deleted the copy.py that I had created. Hope you are having a great weekend. Thanks Pooja On Sat, Feb 18, 2017 at 7:32 PM, Peter Otten <__pete...@web.de> wrote: > Pooja Bhalode wrote: > > > Hi, > > > > I am trying to create a simple