鱼C论坛

 找回密码
 立即注册
查看: 1145|回复: 2

Python 中遇到的难题6

[复制链接]
发表于 2020-3-20 22:16:32 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
class Rectangle:
    length =   float(input('长:'))
    width = float(input('宽:'))

    def setRect(self):
        print("打印长和宽")
        self.length = length
        self.width = width

    def getRect(self):
        print("这个矩形的长是%.2f,宽是%.2f" % (self.length,self.width))

    def getArea(self):
        return  self.length * self.width

k = Rectangle()


这段代码为什么调用后会出错啊


k.setRect()
打印长和宽
Traceback (most recent call last):
  File "<pyshell#8>", line 1, in <module>
    k.setRect()
  File "E:/Python .project/class 长和宽.py", line 7, in setRect
    self.length = length
NameError: name 'length' is not defined

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-3-20 22:19:23 | 显示全部楼层
你得先定义一个__init__方法,在那里头定义length什么的
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-20 22:43:14 | 显示全部楼层
class Rectangle:
        
        def __init__(self, length, width):
                self.length = length
                self.width = width
        
        def set_rect(self):
                print('长:{}'.format(self.length))
                print('宽: {}'.format(self.width))
                
        def get_rect(self):
                print("这个矩形的长是%.2f,宽是%.2f" % (self.length, self.width))
        
        def get_area(self):
                return self.length * self.width
                
        def main(self):
                self.get_rect()
                self.set_rect()
                

if __name__ == '__main__':
        length = float(input('长:'))
        width = float(input('宽:'))
        k = Rectangle(length, width)
        k.main()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-25 05:03

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表