欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

我的第一个Python程序

程序员文章站 2024-03-23 19:17:22
...

突然想学Python了,今天开始学习,编出了我的第一个Python程序

#calculate the area and circumference of a circle from its radius
import math
radiusString =input("Enter the radius of your circle:")
radiusInteger =int(radiusString)
circumference=2*math.pi*radiusInteger
area=math.pi*(radiusInteger**2)
print ("The cirumference is:%.2f,and the area is:%.2f"%(circumference,area))


相关标签: Python