Python
xqhlsjslcy
这个作者很懒,什么都没留下…
展开
-
Python关键函数
1.字符串函数str1='string' str1.upper() #全部转换为大写str1.isalpha() #是否全部是字母str1.lower() #全部转换为小写len(str1) 长度str(str1) 将任意字符转换为字符串2.数学函数The abs() functionreturns the absolutevalue of the number it原创 2016-06-17 15:37:39 · 241 阅读 · 0 评论 -
python各种科学计算包
http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy各种依赖包这里都有,出现各种安装错误都可以用这里相应的依赖包解决 下载到相应的安装包以后,将后缀改为egg,然后运行easy_install 完整的包名原创 2016-06-17 15:39:33 · 555 阅读 · 0 评论 -
使用python numpy进行SVD分解
>>> import numpy as np>>>a=np.matrix([[3,0,3],[5,4,0],[1,2,4],[2,2,0]])>>> amatrix([[3, 0, 3], [5, 4, 0], [1, 2, 4], [2, 2, 0]])>>> from numpy import linalg as la>>> U,si原创 2016-06-17 15:39:28 · 3397 阅读 · 0 评论 -
python字典sort和min函数的用法
原创 2016-06-17 15:39:25 · 964 阅读 · 0 评论 -
python-数组-求逆,转置等操作
>> from numpy import *>>> from numpy.linalg import *>>> a = array([[1.0, 2.0], [3.0, 4.0]])>>> print a[[ 1. 2.] [ 3. 4.]]>>> a.transpose()array([[ 1., 3.], [ 2., 4.]])>>> inv(a)原创 2016-06-17 15:38:49 · 13027 阅读 · 0 评论 -
python预测房价
numpy教程:http://www.jb51.net/article/49397.htm线性回归教程:http://wiki.mbalib.com/wiki/线性回归预测法 # Enter your code here. Read input from STDIN.Print output to STDOUT#coding:utf-8import numpyimport strin原创 2016-06-17 15:38:46 · 2107 阅读 · 0 评论 -
python类使用
class Car(object): condition = "new" def __init__(self,model, color, mpg): self.model = model self.color = color self.mpg = mpg defdisplay_car(self): re原创 2016-06-17 15:38:22 · 242 阅读 · 0 评论 -
python类成员变量引用示例
class Car(object): condition='new' def__init__(self,model,color,mpg): self.model=model self.color=color self.mpg=mpgmy_car=Car('DeLorean','silver',88)print my_car.co原创 2016-06-17 15:38:20 · 622 阅读 · 0 评论 -
python位函数
bin() 十进制转二进制oct()十进制转八进制hex()十进制转十六进制原创 2016-06-17 15:38:09 · 311 阅读 · 0 评论 -
用Python判断任意整数x是否是质数
def is_prime(x): if x inrange(0,2): return False else: if x>=2: for n in range(2,x): if x%n==0: return False原创 2016-06-17 15:37:47 · 993 阅读 · 0 评论 -
Python实现一个学生成绩系统
lloyd = { "name":"Lloyd", "homework":[90.0, 97.0, 75.0, 92.0], "quizzes":[88.0, 40.0, 94.0], "tests":[75.0, 90.0]}alice = { "name":"Alice", "homework":[100.0, 92.0, 98.原创 2016-06-17 15:37:45 · 4578 阅读 · 0 评论 -
Python import
Universal imports may look great on the surface, but they're not agood idea for one very important reason: they fill your programwith a ton ofvariable and function names without the safety of those原创 2016-06-17 15:37:42 · 239 阅读 · 0 评论 -
python 中英文时间转换
将英文日期转换为标准的年-月-日原创 2016-11-23 15:54:38 · 12657 阅读 · 0 评论