码迷,mamicode.com
首页 > 编程语言 > 详细

python类定义小问题

时间:2017-08-27 10:03:46      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:提示   let   self   ini   问题   下划线   bsp   sar   nbsp   

1 >>> class Athlete:
2     def __init__ (self,a_name,a_dob=None,a_times=[]) :
3         self.name = a_name
4         self.dob = a_dob
5         self.times = a_times
6 
7         
8 >>> sarah =Athlete(Sarah Sweeney,2002-6-27,[2.65,2:56,1.45])
9 >>> james = Athlete(James Jone)

1、__init__     左右各是两个小短下划线_ _

2、 def (空格) __init__ (self) : 没有空格会提示语法错误。

 

python类定义小问题

标签:提示   let   self   ini   问题   下划线   bsp   sar   nbsp   

原文地址:http://www.cnblogs.com/xflqm/p/7437473.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!