2016-09-23 matplotlib matplotlib 类似 面向对象的 matlab (有点时候似乎没有charts类漂亮….) 工具: ipython notebook 1jupyter notebook 中文显示 12345#-*- coding: utf-8 -*-import matplotlib.pyplot as pltimport numpy as npplt.rcParams['font.sans-serif'] = ['SimHei']plt.rcParams['axes.unicode_minus'] = False HBK普通图 HBK高级图 英文参考 machine learningpython Greater World >>
2016-09-12 python class 基本语法//属性与封装//方法//继承和组合//多态//特殊方法//wxpython 当时想用static变量想到类的.. classpython Greater World >>
2016-09-11 python函数式编程 函数做参数 map,filter,reduce lambda 函数第一个单词小写,后面所有单词首字母大写 类的首字母大写 变量用下划线分开 python Greater World >>
2016-09-07 python2(HBK) 基本数据结构 python 没有引用,不能直接用 = copy(这样是copy reference) 所以需要深拷贝 b = a[:] python Greater World >>