Re: [Tutor] Simple calculator

2006-11-01 Thread Michael Lange
Hi Joe, On Tue, 31 Oct 2006 18:37:27 -0800 "Joe Cox" <[EMAIL PROTECTED]> wrote: > I found this simple calculator on the web: > > from Tkinter import * > from math import * > ###http://sunsite.uakom.sk/sunworldonline/swol-02-1998/swol-02-python.htmlBy > Cameron Laird and Kathryn Soraiz...Getting

Re: [Tutor] Simple calculator

2006-11-01 Thread Kent Johnson
Joe Cox wrote: > I found this simple calculator on the web: > > from Tkinter import * > from math import * > ###http://sunsite.uakom.sk/sunworldonline/swol-02-1998/swol-02-python.htmlBy > Cameron Laird and Kathryn Soraiz...Getting Started with Python### > > def evaluate(event): > label['t

[Tutor] Simple calculator

2006-10-31 Thread Joe Cox
I found this simple calculator on the web: from Tkinter import * from math import * ###http://sunsite.uakom.sk/sunworldonline/swol-02-1998/swol-02-python.htmlBy Cameron Laird and Kathryn Soraiz...Getting Started with Python### def evaluate(event): label['text'] = "Result: " + str(eval(ex