2016年5月25日

第七节课:字典

摘要: 字典是无序的,它不能通过偏移量来索引,只能通过键来存取. 字典= {'key':value} key:类似我们现实的钥匙,而value则是锁。一个钥匙开一个锁. 特点:内部没有顺序,通过键来读取内容,可嵌套,方便我们组织多种数据结构,并且原地修改里面的内容,属于可变类型. 组成字典的键必须是不可变的 阅读全文

posted @ 2016-05-25 23:02 慧命 阅读(196) 评论(0) 推荐(0) 编辑

第六节课:元组和集合

摘要: 第六节课:元组合集合 首先,看一下英文对应词汇“迭代”-》"iteration"->(computer science) a single execution of a set of instructions that are to be repeated; "the solution took h 阅读全文

posted @ 2016-05-25 23:00 慧命 阅读(690) 评论(0) 推荐(0) 编辑

导航