Re: [Tutor] getting back my listbox items

2018-06-24 Thread Alan Gauld via Tutor
On 24/06/18 18:26, Ali M wrote: Just a quick observation, its too late to read it in detail... > def update_list(self): > search_term = self.search_var.get() > for item in self.listbox.get(0, tk.END): > if search_term.lower() in item: > self.listbox

Re: [Tutor] egg timer

2018-06-24 Thread boB Stepp
Greetings, Paula! On Sun, Jun 24, 2018 at 4:52 PM Paula Malimba wrote: > > Hello, > > I'm new to programming and am studying the book Begin to Code with Python. > I'm stuck in lesson 3, trying to make an egg timer. I keep having a syntax > error. > > Please help!!! Please pretend for a moment th

Re: [Tutor] egg timer

2018-06-24 Thread Alan Gauld via Tutor
On 24/06/18 22:21, Paula Malimba wrote: > I'm new to programming and am studying the book Begin to Code with Python. > I'm stuck in lesson 3, trying to make an egg timer. I keep having a syntax > error. Most of us won't have that book and so can't see the code. More importantly none of us can se

[Tutor] egg timer

2018-06-24 Thread Paula Malimba
Hello, I'm new to programming and am studying the book Begin to Code with Python. I'm stuck in lesson 3, trying to make an egg timer. I keep having a syntax error. Please help!!! Thanks, Paula ___ Tutor maillist - Tutor@python.org To unsubscribe or c

[Tutor] getting back my listbox items

2018-06-24 Thread Ali M
Hi, when i do search in my Entrybox the list lowers down to that typed item the code of which i wrote in the update_list function. how should i get listbox items back again after it has been lowered? and another question: if i want to format some specific text in my Text widget i should use Beautif