在线名词解释大全 - Python程序设计 - 详细

7()Analyzethefollowingcode:classA:def__init__(self,s):self.s=sdefprint(self):print(s)a=A("Welcome")a.print()

A
The program has an error because class A does not have a constructor.
B
The program has an error because class A should have a print method with signature print(self, s).
C
The program has an error because class A should have a print method with signature print(s).
D
The program would run if you change print(s) to print(self.s).
正确答案:
相关推荐
扫描二维码
关注公众平台