贴一个做数据清洗时写的代码, 做数据处理时,原文件数据在进行处理时需要转换成一定格式, 原始文件数据:123. […]
Continue reading作者:test16604225
python3set(集合)详解
add(增加元素) name = set([‘tom’,’lucyR […]
Continue readingpython3dict(字典)详解
clear(清空字典内容) stu = { ‘num1′:’tomR […]
Continue readingpython程序打包详解
环境: centos6.5_x64python版本 : 2.6 使用pyinstaller打包 pyinsta […]
Continue readingpython中如何查看文件名和文件路径
查看文件名和文件路径 >>> import os >>> url = ‘http://images […]
Continue readingpython3中对文件操作的详解
步骤:打开文件-》操作文件-》关闭文件 打开文件 文件句柄 = open(‘文件路径’ […]
Continue readingpython程序员需要会的6个程序库
1.pyglet
Continue reading利用python实现多线程抓取知乎用户方法
需要用到的包: beautifulsoup4html5libimagerequestsredispymysql […]
Continue readingpython和linux系统容易犯的错误
本人已经在运维行业工作了将近十年,我最早接触linux是在大二的样子,那时候只追求易懂,所以就选择了ubunt […]
Continue reading详解使用python文件操作open读写文件追加文本内容实例
1.open使用open打开文件后一定要记得调用文件对象的close()方法。比如可以用try/finally […]
Continue reading详解python3.6正式版新特性
按照python官网上的计划,python3.6正式版期望在2016-12-16号发布,也就是这周五。从去年的 […]
Continue readingpython获取某年中每个月的第一天和最后一天的两种方法
搜索关键字: python get every first day of month 参考解答:方法一: >> […]
Continue reading使用python常见的格式化输出原因
本文总结了一些简单基本的输出格式化形式,下面话不多说了,来看看详细的介绍吧。一、打印字符串 >>> print […]
Continue reading详解python用模块zlib压缩与解压字符串和文件的方法代码
python中zlib模块是用来压缩或者解压缩数据,以便保存和传输。它是其他压缩工具的基础。下面来一起看看py […]
Continue reading手动释放python的内存的方法
在上文的优化中,对每500个用户,会进行一些计算并记录结果在磁盘文件中。原本以为这么做,这些结果就在磁盘文件中 […]
Continue reading