2017年8月4日

关于dictionary和tuple充当函数参数

摘要: 需要接收dict时,使用 **name; 需要接收tuple时,使用 *name; --> *name参数后面的任何数据会被认为是’keyword-only’,即它们只能被当作关键词而非参数使用。例如: *name需在**name之前。 例如: 对于使用list或tuple或dict作为参数,假如函 阅读全文

posted @ 2017-08-04 16:52 freshair_cn 阅读(493) 评论(0) 推荐(0) 编辑

object and namespace

摘要: http://effbot.org/zone/python-objects.htm 几点总结: (1) 类的基本属性 . id, returned by id(obj) . type, returned by type(obj) . some content . methods; some obje 阅读全文

posted @ 2017-08-04 15:21 freshair_cn 阅读(179) 评论(0) 推荐(0) 编辑

导航