
Python
zengshaotao
大道至简,未来可期
展开
-
Python入门
安装完Python之后(我本机的版本是2.5.4),打开IDLE(Python GUI) , 该程序是Python语言解释器,你写的语句能够立即运行.我们写下一句著名的程序语句: <!--<br><br>Code highlighting produced by Actipro CodeHighlighter (freeware)<br>http://...原创 2014-06-25 11:03:40 · 93 阅读 · 0 评论 -
Python+selenium2 自动化测试登录
from selenium import webdriver from selenium.common.exceptions import NoSuchElementException from selenium.webdriver.common.keys import Keys import time driver=webdriver.Chrome() driver.maxim...2017-09-15 09:32:32 · 133 阅读 · 0 评论 -
Python基本语法
#coding=utf-8 import urllib import math import urllib.request from urllib.request import Request, urlopen from urllib.error import URLError, HTTPError #定义可复用的方法 def getHtml(url): r...2017-09-15 09:33:15 · 109 阅读 · 0 评论