定制数据对象
1、创建字典Python 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 10:55:48) [MSC v.1600 32 bit (Intel)] on win32Type "copyright", "credits" or "license()" for more information.>>> cheese={}>>> type(chee
1、创建字典
Python 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 10:55:48) [MSC v.1600 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> cheese={}
>>> type(cheese)
<class 'dict'>
>>> cheese['Name']='john'
>>> cheese['Position']='manager'
>>> cheese
{'Position': 'manager', 'Name': 'john'}
>>> cheese['Age']='25'
>>> cheese
{'Position': 'manager', 'Age': '25', 'Name': 'john'}
>>>
2、将代码与数据打包在类中
创建类
class Athlete
def _init_(self):
#the code to initialize a "Athlete" object
创建对象
a=Athlete();--------------Athlete._init_(a)
每个方法的第一个参数为调用对象实例
class Athlete
def _init_(self,value=0):
self.thing=value
def howbig(self):
return(len(self.thing))
- 无返回值啊
- 第一个参数为调用对象
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
所有评论(0)