どのような形状の領域を見つけたいかを人に尋ねる「簡単な」方法を作成しようとしています。次に、入力に基づいて形状の面積を見つけます。Python 2.7.3 を使用しています。これが私がこれまでに持っているものです:
from math import pi
c = ""
r = ""
x = (input("Do you have a [r]ectangle or a [c]ircle? ")) # Answer with r or c
if x == "r":
l = (int(input("What is the length of your rectangle? ")))
w = (int(input("What is the width of your rectangle? ")))
print( l * w )
elif x == "c":
r = (int(input("What is the radius of your circle? ")))
print( r ** 2 * pi)
else:
print("Please enter request in lower case. ")