Re: [Tutor] Accessing an entry value input by the user

2017-02-12 Thread Alan Gauld via Tutor
On 12/02/17 20:01, Pooja Bhalode wrote: > Thank you so much. I got stuck in another section: It would be helpful if you gave more details of exactly how you get stuck. What is happening(or not) that puzzles you. Otherwise we just have to guess at what you mean. Anyway, here goes... > root=Tk()

Re: [Tutor] Accessing an entry value input by the user

2017-02-12 Thread Pooja Bhalode
Hi Alan, Thank you so much for providing me your input on these things. I made all the corrections to the code as per you suggested. Thank you so much. I got stuck in another section: Code: from Tkinter import * root=Tk() root.title("Design Point Suggestions") root.geometry("650x400") frame1

Re: [Tutor] Accessing an entry value input by the user

2017-02-11 Thread Alan Gauld via Tutor
On 11/02/17 18:59, Pooja Bhalode wrote: > Hi Alan, > > I had done what you suggested here, I also tried creating another file for > that snipet of the code to see if that section works. The other file works, > but I am not able to figure out why the original one doesn't work. Too late at night

Re: [Tutor] Accessing an entry value input by the user

2017-02-11 Thread Pooja Bhalode
Hi Alan, I had done what you suggested here, I also tried creating another file for that snipet of the code to see if that section works. The other file works, but I am not able to figure out why the original one doesn't work. The variable here is entrynumberspeciesvar Code: from Tkinter import

Re: [Tutor] Accessing an entry value input by the user

2017-02-11 Thread Alan Gauld via Tutor
On 11/02/17 15:28, Pooja Bhalode wrote: > I am trying to create a label and an entry widget. I am not able to > understand as to how to access the value input by the user in the entry > widget. > > Label(frame1, text = "Number of species:").grid(row=0, column = 1, sticky=W) > entrynumberspecies

[Tutor] Accessing an entry value input by the user

2017-02-11 Thread Pooja Bhalode
Hi, I am trying to create a label and an entry widget. I am not able to understand as to how to access the value input by the user in the entry widget. Label(frame1, text = "Number of species:").grid(row=0, column = 1, sticky=W) entrynumberspecies = Entry(frame1) entrynumberspecies.grid(row=0,