thanks! i came up with this
choice = ""
while choice!= "no":
a = input ("enter first number")
print a
b = input ("enter secound number")
print b
print "addition", a+b
print "multiply", a*b
print ("retry?")
text = raw_input ()
if text == "yes":
exit ()
very nice! lol, just one question the first line what is the function of the two speach marks?? apart from that i get it!
thanks
Tim
|