python
文章平均质量分 77
sinat_36164665
这个作者很懒,什么都没留下…
展开
-
python入门
1.下划线_在解释器中有特殊意义,表示最后的一个表达式的值: eg:>>> mystring='hello world' >>> print mystring hello world >>> mystring 'hello world' //在仅使用变量名的时候,输出的字符串是用单引号括起来的 >>> _ 'hello world' 2.print语句与字符串格式操作符原创 2016-11-27 16:05:25 · 234 阅读 · 0 评论 -
python机器学习k临近算法
#-*-coding:utf-8-*- from numpy import * import operator import matplotlib import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D def file2matrix(filename): fr=open(filename) a原创 2016-12-16 15:10:17 · 431 阅读 · 0 评论