Python常用代码2】的更多相关文章

本文转自逆袭的二胖,作者二胖 今天给大家介绍一个由一个国外小哥用好几年时间维护的 Python 代码合集.简单来说就是,这个程序员小哥在几年前开始保存自己写过的 Python 代码,同时把一些自己比较常用的代码作为一个个小脚本保存在一起,然后维护在 GitHub 上. https://github.com/geekcomputers/Python 我又看了一下,目前小哥的这个项目已经有 12000 多人关注啦.无论你是 Python 初学者还是已经学习过一段时间 Python,这个代码合集都值得…
获取标签名 h1 class 是h1usersoup.find(name="h1", attrs={"class":"h1user"});获取标签的内容h1userSoup.string; __str__ 使用class Student(object): def __init__(self, name): self.name = name def __str__(self): return self.name print(Student('Mic…
目录 Python3常用 文件处理 json处理 log日志 argparse使用 INIparser Python3常用 文件处理 class BaseMethod: @staticmethod def run_cmd(cmd): print_log("RUN CMD: %s" %cmd) retcode, output = subprocess.getstatusoutput(cmd) return retcode, output @staticmethod def write_f…
一.文件操作 1.判断一个目录是否存在,若不存在则创建 if not os.path.isdir(new_path): os.makedirs(new_path) 2.新建一个文件 f=open("filename",'w') f.close() 首先会判断这个文件是否存在,若不存在则新建,.也可以在open和close直接f.write()函数写文件. 3.比较两个文件是否相同 import filecmp filecmp.cmp(r'文件1',r'文件2') 如果两个文件相同.会出…
1.生成dataframe数据 5.读取带 ','分隔符的txt文件 4.DataFrame格式数据处理中报错 2.安装库时出现如下错误: 3.得到股票交易日数据 1.生成dataframe数据 import pandas as pdimport numpy as np from pandas import Series,DataFrame df=pd.DataFrame(np.arange(16).reshape(4,4),index=list('abcd'),columns=list('xy…
#coding=utf-8 import urllib import re def getHtml(url): page = urllib.urlopen(url) html = page.read() return html def getImg(html): reg = r'src="(.+?\.jpg)" pic_ext' imgre = re.compile(reg) imglist = re.findall(imgre,html) x = 0 for imgurl in im…
文件名字中含有特殊字符转成空格,因为?‘’等作为文件名是非法的.以下正则表达式进行过滤转换 newname = re.sub("[\s+\.\!\/_,$%^*(+\"\')]+|[+——()?[]“”!,.?.~@#¥%……&*()]",' ', name)…
1.jupyter notebook 设置全部行输出: # 设置全部行输出 from IPython.core.interactiveshell import InteractiveShellInteractiveShell.ast_node_interactivity = "all"…
用matplotlib画图时,若设置全部行输出,会得到包括图标在内的所有输出结果. plt.show() 输出全部行,参数为“all”:输出最后一行,参数为“last_expr”…
[python] 常用正则表达式爬取网页信息及分析HTML标签总结 转http://blog.csdn.net/Eastmount/article/details/51082253 标签: pythonpython爬虫正则表达式html知识总结 2016-04-07 06:13 3615人阅读 评论(4) 收藏 举报  分类: Python爬虫(23)  Python基础知识(17)  版权声明:本文为博主原创文章,转载请注明CSDN博客源地址!共同学习,一起进步~ 这篇文章主要是介绍Pytho…