Re: [Tutor] Problem in making calulator

2005-02-17 Thread Kent Johnson
. Sm0kin'_Bull wrote: No-one answered question So, I e-mail it again Help me please I wrote this to add 2 numbers... print "Please input data" number1 = int(raw_input(" ")) number2 = int(raw_input("+ ")) total = number1 + number2 print total raw_input("") I want to make output like this... 1 + 1 =

Re: [Tutor] Problem in making calulator

2005-02-17 Thread Max Noel
On Feb 17, 2005, at 23:11, . Sm0kin'_Bull wrote: I wrote this to add 2 numbers... print "Please input data" number1 = int(raw_input(" ")) number2 = int(raw_input("+ ")) total = number1 + number2 print total raw_input("") I want to make output like this... 1 + 1 = 2 But, actually... it looks like th

[Tutor] Problem in making calulator

2005-02-17 Thread . Sm0kin'_Bull
No-one answered question So, I e-mail it again Help me please I wrote this to add 2 numbers... print "Please input data" number1 = int(raw_input(" ")) number2 = int(raw_input("+ ")) total = number1 + number2 print total raw_input("") I want to make output like this... 1 + 1 = 2 But, actually... it