<!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 bgColor=#ffffff>
<DIV>Here's the message:</DIV>
<DIV>&nbsp; File "D:\Python22\prog4.py", line 19<BR>&nbsp;&nbsp;&nbsp; while 
option != 9:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<BR>SyntaxError: 
invalid syntax<BR></DIV>
<DIV>And the code:</DIV>
<DIV>#This program finds the area and perimeter of circles, rectangles, and 
squares.<BR>def menu():<BR>&nbsp;&nbsp;&nbsp; print '1) Area 
(Circle)'<BR>&nbsp;&nbsp;&nbsp; print '2) Area 
(Rectangle)'<BR>&nbsp;&nbsp;&nbsp; print '3) Area 
(Square)'<BR>&nbsp;&nbsp;&nbsp; print '4) Perimeter 
(Circle)'<BR>&nbsp;&nbsp;&nbsp; print '5) Perimeter 
(Square)'<BR>&nbsp;&nbsp;&nbsp; print '6) Perimeter 
(Rectangle)'<BR>&nbsp;&nbsp;&nbsp; print '9) Exit'</DIV>
<DIV>&nbsp;</DIV>
<DIV>import math<BR>print 'By Nathan Pinno'<BR>print 'ID# 
2413448'<BR>print<BR>print 'Program 4 - Functions'<BR>print<BR>menu()<BR>option 
= int(raw_input('Option (1,2,3,4,5,6,9): ')<BR>while option != 
9:<BR>&nbsp;&nbsp;&nbsp; if option == 
1:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; r = int(raw_input('Radius: 
')<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print 'The area of the circle = 
',pi*(r**2)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; option = 
int(raw_input('Option (1,2,3,4,5,6,9): ')<BR>&nbsp;&nbsp;&nbsp; elif option == 
2:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; l = int(raw_input('Length: 
')<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; w = int(raw_input('Width: 
')<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print 'The area of the 
rectangle = ',l*w<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; option = 
int(raw_input('Option (1,2,3,4,5,6,9): ')<BR>&nbsp;&nbsp;&nbsp; elif option == 
3:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; s = int(raw_input('Side: 
')<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print 'The area of a square = 
',s**2<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; option = 
int(raw_input('Option (1,2,3,4,5,6,9): ')<BR>&nbsp;&nbsp;&nbsp; elif option == 
4:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; d = int(raw_input('Diameter: 
')<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print 'The perimeter of the 
circle = ',pi*d<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; option = 
int(raw_input('Option (1,2,3,4,5,6,9): ')<BR>&nbsp;&nbsp;&nbsp; elif option == 
5:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; l = int(raw_input('Length: 
')<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; w = int(raw_input('Width: 
')<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print 'The perimeter of the 
rectangle = ',(2*l)+(2*w)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; option = 
int(raw_input('Option (1,2,3,4,5,6,9): ')<BR>&nbsp;&nbsp;&nbsp; elif option == 
6:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; s = int(raw_input('Side: 
')<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print 'The perimeter of a 
square = ',s*4<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; option = 
int(raw_input('Option (1,2,3,4,5,6,9): ')<BR>&nbsp;&nbsp;&nbsp; 
else:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print 'That is not an 
option. Please choose an option.'<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
option = int(raw_input('Option (1,2,3,4,5,6,9): ')<BR>print 
'Goodbye.'<BR></DIV></BODY></HTML>