__init__(self,params)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了__init__(self,params)相关的知识,希望对你有一定的参考价值。
属性初始化函数:
__init__(self,params),init前后各有两个下划线
学习初始化函数时,遇到的一个报错,经查阅发现是自己少写了下划线
1、python代码,如下:
class Student():
def _init_(self,name,city):
self.name=name
self.city=city
print("My name is %s and come from %s"%(name,city))
def talk(self):
print("Hello World!")
stu1=Student(‘Jack‘,‘Beijing‘)
stu1.talk()
stu2=Student(‘Rose‘,‘Franch‘)
stu2.talk()
2、报错信息,如下:
Traceback (most recent call last):
File "D:/Python_script/Student.py", line 15, in <module>
stu1=Student(‘Jack‘,‘Beijing‘)
TypeError: object() takes no parameters
3、解决方法,如下:
检查__init__()函数前后的下划线个数,修改成前后各两个,再运行就OK了……
以上是关于__init__(self,params)的主要内容,如果未能解决你的问题,请参考以下文章
Python中:self和__init__的含义 + 为何要有self和__init__
转载--------Python中:self和__init__的含义 + 为何要有self和__init__