概述
设计一个Circle类,包括圆心位置、半径、颜色属性。编写构造方法进行属性初始化,编写类方法计算周长与面积。
方法一
class Circle:
location=(0,0)
r=0
color=""
def __init__(self):
self.location=(100,100)
self.r=10
self.color="white"
def GetGirth(self):
PI=3.14
print("圆的周长:")
print(2*PI*self.r)
def GetArea(self):
PI=3.14
print("圆的面积")
print(PI*self.r*self.r)
myCircle=Circle()
myCircle.GetGirth()
myCircle.GetArea()
#方法二
class Circle:
def __init__(self,location,r,color):
self.location =location
self.r=r
self.color=color
def GetGirth(self):
return 2*3.14*self.r
def GetArea(self):
return 3.14*self.r*self.r
myCircle=Circle((200,200),10,"红色")
print("圆的周长=%0.2f"%(myCircle.Ge
最后
以上就是乐观煎蛋为你收集整理的python输入半径计算公式_Python:09设计Circle类包括圆心半径、颜色属性,编写类方法计算周长与面积(2种方法)...的全部内容,希望文章能够帮你解决python输入半径计算公式_Python:09设计Circle类包括圆心半径、颜色属性,编写类方法计算周长与面积(2种方法)...所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复