Python3
2016-09-12 20:03:15 9 举报
AI智能生成
记录Python学习的知识
作者其他创作
大纲/内容
画图
matplotlib包
pyplot
import pyplot from matplotlib as plt
plt.figure()-->plt.plot(x,y)新建画板,创建图像
plt.show()展示画图
其他:gca(get current axis)
ax = plt.gca();
其他
数据处理Pandas&Numpy
I/O处理
open('name.txt','w','buffling')
w: write, r: read only, a: add
f.write();写入 f.close();保存并关闭 f.flush()刷新
f.wiritelines()列表形式写入
f.read(): read the full text
f.readline(); f.readlines()读取为列表
f.xreadlines(); 迭代器,快速读取
f.seek(0);跳回指定位置
爬虫
网页下载
import requests
requests.get(链接)
import urllib.request
urllib.request.urlopen(连接)
网页剖析
from bs4 import BeautifulSoup
soup = BeautifulSoup(response,'lxml')
若为requests包所得,则BeautifulSoup(response.content,'lxml')
soup.select('选择内容')
选class,则'.class_name'
选<html>,<body>,<h1>等,直接'name'即可
选id,则'#id_name'
寻找需要下载的内容的链接
Google chrome->审查元素->network->选择类型(eg. doc)
神经网络
keras
0 条评论
下一页