应答器线圈上的感应电压的大小和穿过导体所围面积的总的磁通量的变化率成()(填正比或反比)。
class Student:def __init__(self,n="xxx"):self.name=n@classmethoddef show(cls):s=cls()print(s.name)s=Student("yyy")Student.show(s)结果:
A. yyy
B. xxx
C. 错误
D. xxxyyy
class Student:def __init__(self,n="xxx"):self.name=ndef show(self):print(self.name)s=Student("yyy")s.show()结果
A. yyy
B. xxx
C. None
D. 错误
class Student:def __init__(self,n="xxx",s="男"):self.name=nself.sex=sdef show(self):print(s.name,s.sex)s=Student("yyy")Student.show(s)结果:
A. yyy 男
B. xxx 男
C. Student.show(s)错误
D. def __init__(self,n="xxx",s="男")错误