Eric Smith added the comment:
If you have a question to ask, this is not the proper forum. Please see
python-list http://mail.python.org/mailman/listinfo/python-list
--
nosy: +eric.smith
resolution: -> invalid
status: open -> closed
___
Python track
New submission from Angel :
# Area calculation program
print "Show Area"
print "--"
print
# Print out the menu:
print "Please select a shape:"
print "1 Rectangle"
print "2 Circle"
# Get the user's choice:
shape = input ("> ")
# Calculate the area:
if shape == 1: