python:面向对象-设计模式
Posted on
in
python
• 22 words
• 1 minute read
设计模式
- 设计模式是高成次的方案,并不关心具体的实现细节
- 比如算法和数据结构和网页。对应正在尝试解决问题,何种算法和数据结构最优,则是由软件工程师自己把握。
Read more...
python元祖与字典
Posted on
in
python
• 131 words
• 1 minute read
元祖
tuple()
定义元组
- 元组中存放的数据可以使int,str list diec
- 读取元组的值使用下标
- 元组的修改和删除是不支持的
- 但是列表支持修改a[0]=99元组不允许删除部分:remove pop del元组不能使用
Read more...
python判断语句
Posted on
in
python
• 40 words
• 1 minute read
python字符串
Posted on
in
python
• 15 words
• 1 minute read
字符串
- name[0] 代表取第一个值的下标返回
- name[len(name)-1]代表取最后一个值并返回
Read more...
python模块
Posted on
in
python
• 115 words
• 1 minute read