<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2900.2668" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY style="COLOR: #000000; FONT-FAMILY: Times New Roman" bgColor=#ffffff>
<BLOCKQUOTE id=0><LABEL id=HbSession SessionId="4060303509"></LABEL>
  <DIV>Hey all,</DIV>
  <DIV>&nbsp;</DIV>
  <DIV>Thought I'd try a mini-calc.&nbsp;Here's the code:</DIV>
  <DIV>&nbsp;</DIV>
  <DIV># This is a small calculator.<BR>print "Mini Calculator"<BR>print "By 
  Nathan Pinno"<BR>print<BR>print "CALCULATE MENU"<BR>print "1) Add"<BR>print 
  "2) Subraction"<BR>print "3) Multiplication"<BR>print "4) Division w/o 
  remainder"<BR>print "5) Division with remaider"<BR>print "6) 
  Exponation"<BR>print "7) Square roots"<BR>print "8) Exit"<BR>cal_opt = 
  int(raw_input("What option would you like: "))<BR>if cal_opt == 
  "1":<BR>&nbsp;&nbsp;&nbsp; X = input("First number:" )<BR>&nbsp;&nbsp;&nbsp; Y 
  = input("Second number:" )<BR>&nbsp;&nbsp;&nbsp; print X, "+", Y, "= ",X + 
  Y<BR>&nbsp;&nbsp;&nbsp; cal_opt = int(raw_input("Option: "))<BR>elif cal_opt 
  == "2":<BR>&nbsp;&nbsp;&nbsp; X = input("First number:" 
  )<BR>&nbsp;&nbsp;&nbsp; Y = input("Second number:" )<BR>&nbsp;&nbsp;&nbsp; 
  print X, "-", Y, "= ",X - Y<BR>&nbsp;&nbsp;&nbsp; cal_opt = 
  int(raw_input("Option: "))<BR>elif cal_opt == "3":<BR>&nbsp;&nbsp;&nbsp; X = 
  input("First number:" )<BR>&nbsp;&nbsp;&nbsp; Y = input("Second number:" 
  )<BR>&nbsp;&nbsp;&nbsp; print X, "*", Y, "= ",X * Y<BR>&nbsp;&nbsp;&nbsp; 
  cal_opt = int(raw_input("Option: "))<BR>elif cal_opt == 
  "4":<BR>&nbsp;&nbsp;&nbsp; X = input("First number:" )<BR>&nbsp;&nbsp;&nbsp; Y 
  = input("Second number:" )<BR>&nbsp;&nbsp;&nbsp; if Y == 
  0:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print "Division by zero ot 
  allowed!"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Y = input("Second 
  number:" )<BR>&nbsp;&nbsp;&nbsp; 
  else:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print X, "/", Y, "= ",X / 
  Y<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cal_opt = 
  int(raw_input("Option: "))<BR>elif cal_opt == "5":<BR>&nbsp;&nbsp;&nbsp; X = 
  input("First number:" )<BR>&nbsp;&nbsp;&nbsp; Y = input("Second number:" 
  )<BR>&nbsp;&nbsp;&nbsp; if Y == 
  0:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print "Division by zero ot 
  allowed!"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Y = input("Second 
  number:" )<BR>&nbsp;&nbsp;&nbsp; 
  else:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print X, "/", Y, "= ",X / 
  Y," R ", X % Y<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cal_opt = 
  int(raw_input("Option: "))<BR>elif cal_opt == "6":<BR>&nbsp;&nbsp;&nbsp; X = 
  input("First number:" )<BR>&nbsp;&nbsp;&nbsp; Y = input("Power:" 
  )<BR>&nbsp;&nbsp;&nbsp; print X, "**", Y, "= ",X**Y<BR>&nbsp;&nbsp;&nbsp; 
  cal_opt = int(raw_input("Option: "))<BR>elif cal_opt == 
  "7":<BR>&nbsp;&nbsp;&nbsp; X = input("Number to find the square root of:" 
  )<BR>&nbsp;&nbsp;&nbsp; print "The square root of", X, " = 
  ",X**0.5<BR>&nbsp;&nbsp;&nbsp; cal_opt = int(raw_input("Option: "))<BR>elif 
  cal_opt == "8":<BR>&nbsp;&nbsp;&nbsp; print 
  "Goodbye!"<BR>else:<BR>&nbsp;&nbsp;&nbsp; print "That's not an option. Try 
  again."<BR>&nbsp;&nbsp;&nbsp; cal_opt = int(raw_input("Option: "))<BR></DIV>
  <DIV>Here is the screen output:</DIV>
  <DIV>&nbsp;</DIV>
  <DIV>Mini Calculator<BR>By Nathan Pinno</DIV>
  <DIV>&nbsp;</DIV>
  <DIV>CALCULATE MENU<BR>1) Add<BR>2) Subraction<BR>3) Multiplication<BR>4) 
  Division w/o remainder<BR>5) Division with remaider<BR>6) Exponation<BR>7) 
  Square roots<BR>8) Exit<BR>What option would you like: 7<BR>That's not an 
  option. Try again.<BR>Option: 3<BR>3*4<BR>12<BR>&gt;&gt;&gt; </DIV>
  <DIV>&nbsp;</DIV>
  <DIV>Why does it run this way instead of going to the proper equation?</DIV>
  <DIV>&nbsp;</DIV>
  <DIV>Appreciating the help so far,</DIV>
  <DIV>Nathan Pinno<BR></DIV></BLOCKQUOTE>
<P></P></BODY></HTML>