1.模块:三种调用方法 1.在vim写的一个python的文件**,运用import **导入,就可以在交互模式的直接进行调用 2.调用模块里面的某个函数: from 模块名字 in 函数名字 3.将模块名字变短进行调用: import 模块原名 as 新名字 2.基于python开发的东西存放目录: '/usr/lib64/python2.6/site-packages', 3.文件写入磁盘: a=file('文件名','w') "创建新文件" a.write('文件内容1 文件
//__new__(cls[,....]) //对象实例化调用的第一个方法,它的第一个参数是这个类,而其他参数会直接传递给__init__()方法 //需要在基类的基础上对其进行修改时重写__new__()方法 //__del__()方法 //只有在该类实例化的对象全部被del掉时,才调用__del__()方法 //python 中的运算符重载 class New_int(int): //基于基类int的子类New_int def__add__(self,other) //重载运算符 + ret
实例1.登录网易邮箱 #coding=utf-8 from selenium import webdriver from selenium.webdriver.common.keys import Keys import time driverr=webdriver.Firefox() driverr.get("www.mail.163.com") driverr.find_element_by_id("idInput").send_keys("*****
1.源代码 扩展名:.py,由Python程序解释,不需要编译. --创建hello.py源文件 # cat hello.py print 'Hello World!' --执行hello.py [[email protected] study]# chmod a+x hello.py [[email protected] study]# python hello.py Hello World! [[email protected] study]# ./hello.py ./hello.
1.算术运算符 "+"加法:3+2=5 "-"减法:3-2=1 "*"乘法:3*2=6 "/"实数除法:3/2=1,3.0/2=1.5 "//"整数除法:5.6//2=2.0 "%"求余数:17%6=5 "**"求幂运算:2**3=8 2.赋值运算符 "="等于:x=3 "+="加等于:x+=2 "-="减等
最近在看时间序列分析的一些东西,中间普遍用到一个叫pandas的包,因此单独拿出时间来进行学习. 参见 pandas 官方文档 http://pandas.pydata.org/pandas-docs/stable/index.html 以及相关博客 http://www.cnblogs.com/chaosimple/p/4153083.html Pandas介绍 Pandas是python的一个数据分析包,最初由AQR Capital Management于2008年4月开发,并于2009年底