python 第一周(第一天) 我的python成长记 一个月搞定python数据挖掘!(02)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 第一周(第一天) 我的python成长记 一个月搞定python数据挖掘!(02)相关的知识,希望对你有一定的参考价值。
一 数据结构: list tuple dict set
1. list
list01 = list() list01 = []
a.append(object)
a.extend(list)
del a[2]
2. tuple
内容不能更改,长度不能修改 tuple01 = (1,2,3,4)
3. string
4. dict
key必须是可以哈希的对象 (列表是不能作为key 的)
5. set (集合中的元素不重复,支持数学集合操作)
a = set ( list )
二: 函数
def fun(par,...):
pass
函数式编程 : 函数可以是另一个函数的参数,或者返回值
三: class
新式类: 继承object类
四: 异常处理
try except
常见异常 IndexError KeyError NameError ValueError
五: 模块
dir() 列出模块的内容
help() 查看模块的帮助信息
以上是关于python 第一周(第一天) 我的python成长记 一个月搞定python数据挖掘!(02)的主要内容,如果未能解决你的问题,请参考以下文章
python 第一周(第一天) 我的python成长记 一个月搞定python数据挖掘!(02)
python 第一周(第三天) 我的python成长记 一个月搞定python数据挖掘!(04)