class Student: __School="湖州师范学院" def __init__(self,sname,sno,ssex,sage): self.__sname=sname self.__sno=sno self.__ssex=ssex self.__sage=sage print(Student.__School) s=Student("zhangsan","2022082201","F",19) print(s.__sname,s.__sno,s.__ssex,s.__sage,s.__School)
时间: 2024-04-25 19:27:27 浏览: 143
这是一个定义了学生类的代码,并创建了一个学生对象s。在这个代码中,类属性__School是私有的,实例属性__sname、__sno、__ssex和__sage也是私有的。以下是代码的输出结果:
湖州师范学院
Traceback (most recent call last):
File "<stdin>", line 8, in <module>
AttributeError: 'Student' object has no attribute '__sname'
在第一行中,输出了类属性__School的值。在第二行中,试图输出s对象的属性值,但会出现错误。因为属性__sname是私有的,不能直接访问。如果要访问,需要通过类提供的公有方法或属性进行访问。
相关问题
class Book: def __init__(self, sName, sNo, fPrice): self.sName = sName self.sNo = sNo self.fPrice = fPrice def __del__(self, sName, sNo, fPrice): print(f"Book destroyed-{sName},{sNo},{fPrice}") sName = input() sNo = input() fPrice = float(input()) b = Book(sName, sNo, fPrice) b = None帮我修改一下错误
您好,这段代码有一个语法错误,即析构函数__del__的参数应该只有self,如下所示:
```python
class Book:
def __init__(self, sName, sNo, fPrice):
self.sName = sName
self.sNo = sNo
self.fPrice = fPrice
def __del__(self):
print(f"Book destroyed-{self.sName},{self.sNo},{self.fPrice}")
sName = input()
sNo = input()
fPrice = float(input())
b = Book(sName, sNo, fPrice)
b = None
```
在这个修改后的代码中,析构函数__del__的参数只有self,而且在输出信息时使用了类的属性self.sName、self.sNo和self.fPrice。同时,其他部分的代码没有进行修改,仍然可以正常运行。
class BMI: def __init__(self, name, age, height, weight): self.name = sName self.age = iAge self.height = int(fHeight) self.weight = int(fWeight) def getBMI(self, set, height, weight): self.set = int(self.weight*self.weight/self.height/self.weight) return set
根据你提供的代码,我发现 getBMI 方法不需要传递 set、height 和 weight 这些参数。因为在类的 __init__ 方法中已经初始化了这些属性,所以在 getBMI 方法中直接使用即可。
修改后的代码如下:
```python
class BMI:
def __init__(self, name, age, height, weight):
self.name = name
self.age = age
self.height = int(height)
self.weight = int(weight)
def getBMI(self):
bmi = int(self.weight * self.weight / self.height / self.weight)
return bmi
```
在这个修改后的代码中,getBMI 方法不需要接受任何参数,直接计算 BMI 并返回即可。同时,我也对 __init__ 方法做了一些修改,使其按照参数名初始化属性。
希望这个修改后的代码可以解决你的问题。如果你还有其他问题,请随时向我提问。
阅读全文