我想在 Python 3.3.2 中制作这个程序,它会询问你必须输入的圆柱体的半径和高度radius
,height
这是当前代码:
if response=="vol":
radius = float(input("What is the radius and height of the cylinder? (e.g. 32, 15): "))
我应该如何改变它?之后我将计算它的体积: V = hπr 2 我将如何用你的方法来做到这一点?
我想在 Python 3.3.2 中制作这个程序,它会询问你必须输入的圆柱体的半径和高度radius
,height
这是当前代码:
if response=="vol":
radius = float(input("What is the radius and height of the cylinder? (e.g. 32, 15): "))
我应该如何改变它?之后我将计算它的体积: V = hπr 2 我将如何用你的方法来做到这一点?