Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

分类:Python

python笔记,python案例,python学习

python分析nginx访问日志并保存到mysql数据库实例

12 9月10 11月 by helenadmin

使用python 分析nginx access 日志,根据nginx日志格式进行分割并存入mysql数据库。一 […]

Continue reading
Posted in Python · Leave a comment

python实现文件名批量替换和内容替换

12 9月10 11月 by helenadmin

指定文件夹,指定文件类型,替换该文件夹下全部文件的内容。 注意在window下的读写内容需要指定编码,还需要在 […]

Continue reading
Posted in Python · Leave a comment

python单线程实现多个定时器示例

12 9月10 11月 by helenadmin

单线程实现多个定时器 newtimer.py 代码如下: #!/usr/bin/env python from […]

Continue reading
Posted in Python · Leave a comment

python使用百度翻译进行中翻英示例

12 9月10 11月 by helenadmin

利用百度词典进行中翻英 代码如下: import urllib2import reimport sys rel […]

Continue reading
Posted in Python · Leave a comment

python中用ctrl+c终止多线程程序的问题解决

12 9月10 11月 by helenadmin

代码如下: #!/bin/env python # -*- coding: utf-8 -*- #filena […]

Continue reading
Posted in Python · Leave a comment

使用python下载bing图片(代码)

12 9月10 11月 by helenadmin

直接上代码: 代码如下: # -*- coding: cp936 -*-import urllibimport […]

Continue reading
Posted in Python · Leave a comment

python实现问号表达式(?)的方法

12 9月10 11月 by helenadmin

python中的and和or和其它语言的区别很大其它语言中的and和or都是返回bool类型的结果,pytho […]

Continue reading
Posted in Python · Leave a comment

python模块restful使用方法实例

12 9月10 11月 by helenadmin

restful架构,目前是比较流行的一种互联网软件架构。rest,即representational stat […]

Continue reading
Posted in Python · Leave a comment

python实现2014火车票查询代码分享

12 9月10 11月 by helenadmin

代码基于python3.3.3,pyqt5.1.1 代码如下: # -*- coding: utf-8 -*- […]

Continue reading
Posted in Python · Leave a comment

python处理cookie详解

12 9月10 11月 by helenadmin

要在用户浏览器上安装cookie,http服务器向http响应添加类似以下内容的http报头: 代码如下: s […]

Continue reading
Posted in Python · Leave a comment

python访问sqlserver示例

12 9月10 11月 by helenadmin

最近遇到了python访问sqlserver的问题,这里总结下。 一、windows下配置python访问sq […]

Continue reading
Posted in Python · Leave a comment

python实现bitmap数据结构详解

12 9月10 11月 by helenadmin

bitmap是很常用的数据结构,比如用于bloom filter中;用于无重复整数的排序等等。bitmap通常 […]

Continue reading
Posted in Python · Leave a comment

python字典(dictionary)操作详解

12 9月10 11月 by helenadmin

python字典是另一种可变容器模型,且可存储任意类型对象,如字符串、数字、元组等其他容器模型。一、创建字典字 […]

Continue reading
Posted in Python · Leave a comment

python解析中国天气网的天气数据

12 9月10 11月 by helenadmin

使用方法:terminal中输入 代码如下: python weather.py http://www.wea […]

Continue reading
Posted in Python · Leave a comment

python操作xml文件示例

12 9月10 11月 by helenadmin

代码如下: def get_seed_data(filename):dom = minidom.parse(f […]

Continue reading
Posted in Python · Leave a comment

在python的web框架flask中使用多个配置文件的解决方法

12 9月10 11月 by helenadmin

有些框架本身就支持多配置文件,例如ruby on rails,nodejs下的expressjs。python […]

Continue reading
Posted in Python · Leave a comment

python的词法分析与语法分析

12 9月10 11月 by helenadmin

词法分析(lexical analysis):分析由字符组成的单词是否合法,如果没有问题的话,则产生一个单词流 […]

Continue reading
Posted in Python · Leave a comment

python解析json实例方法

12 9月10 11月 by helenadmin

最近在做天气业务的延时监控,就是每隔一个小时检查一次天气数据是否变化,三次不变化就报警。由于页面给的数据的以j […]

Continue reading
Posted in Python · Leave a comment

使用setup.py安装python包和卸载python包的方法

12 9月10 11月 by helenadmin

我们使用 python setup.py install 来安装python包,但是如何卸载呢? 只能手动删除 […]

Continue reading
Posted in Python · Leave a comment

python算法学习之桶排序算法实例(分块排序)

12 9月10 11月 by helenadmin

代码如下: # -*- coding: utf-8 -*- def insertion_sort(a): &# […]

Continue reading
Posted in Python · Leave a comment

python获取当前时间的方法

12 9月10 11月 by helenadmin

我有的时候写程序要用到当前时间,我就想用python去取当前的时间,虽然不是很难,但是老是忘记,用一次丢一次, […]

Continue reading
Posted in Python · Leave a comment

python目录操作之python遍历文件夹后将结果存储为xml

12 9月10 11月 by helenadmin

linux服务器有centos、fedora等,都预先安装了python,版本从2.4到2.5不等,而wind […]

Continue reading
Posted in Python · Leave a comment

python基础教程之lambda表达式使用方法

12 9月10 11月 by helenadmin

python中,如果函数体是一个单独的return expression语句,开发者可以选择使用特殊的lamb […]

Continue reading
Posted in Python · Leave a comment

python3访问sina首页中文的处理方法

12 9月10 11月 by helenadmin

代码如下: “””如果只用普通的import urllib.request […]

Continue reading
Posted in Python · Leave a comment

使用python判断ip地址合法性的方法实例

12 9月10 11月 by helenadmin

一、使用方法和执行效果请看图:

Continue reading
Posted in Python · Leave a comment

python判断windows隐藏文件的方法

12 9月10 11月 by helenadmin

1. 通过windows attrib 命令获取文件隐藏属性 代码如下: syntax attrib [ + […]

Continue reading
Posted in Python · Leave a comment

python实现数通设备端口监控示例

12 9月10 11月 by helenadmin

最近因工作需要,上面要求,每天需上报运维的几百数通设备端口使用情况【】,虽然有现成网管监控工具监控设备状态,但 […]

Continue reading
Posted in Python · Leave a comment

python自动安装pip

12 9月10 11月 by helenadmin

如果是windows安装完成后,需要将’\python27\scripts\’加入系统 […]

Continue reading
Posted in Python · Leave a comment

python编写的com组件发生r6034错误的原因与解决办法

12 9月10 11月 by helenadmin

解决该问题的方法可以为调用本程序的exe文件建立一个合适的manifest文件,指定正确的msvcr90.dl […]

Continue reading
Posted in Python · Leave a comment

python正则分组的应用

12 9月10 11月 by helenadmin

代码如下: import retext=’v101_renow.android.2.2.norma […]

Continue reading
Posted in Python · Leave a comment

文章导航

先前文章
较新文章

近期文章

  • 15款互联网人必备的AI工具,效率提升2倍
  • 多个ChatGPT通用指令
  • Python采集biaozhun政府文件
  • TensorFlow库:Python中的深度学习
  • python 本地密码管理应用

近期评论

  • helenadmin发表在《Python采集biaozhun政府文件》
  • helenadmin发表在《写给程序员的一封公开信》
  • Google发表在《About Me》
  • helenadmin发表在《ES(ElasticSearch)分布式全文搜索引擎及使用方式》
  • buy viagra发表在《About Me》

文章归档

  • 2024年12月
  • 2024年9月
  • 2024年6月
  • 2024年5月
  • 2024年3月
  • 2024年2月
  • 2024年1月
  • 2023年12月
  • 2023年11月
  • 2023年10月
  • 2023年9月
  • 2023年8月
  • 2023年7月
  • 2023年6月
  • 2023年5月
  • 2023年4月
  • 2023年3月
  • 2023年2月
  • 2023年1月
  • 2022年12月
  • 2022年8月
  • 2022年7月
  • 2022年6月
  • 2022年5月
  • 2022年4月
  • 2022年3月
  • 2022年2月
  • 2022年1月
  • 2021年12月
  • 2021年11月
  • 2021年10月
  • 2021年9月
  • 2021年8月
  • 2021年7月
  • 2021年6月
  • 2021年5月
  • 2021年4月
  • 2021年3月
  • 2021年1月
  • 2020年12月
  • 2020年11月
  • 2020年10月
  • 2020年9月
  • 2020年8月
  • 2020年7月
  • 2020年6月
  • 2020年5月
  • 2020年4月
  • 2020年3月
  • 2020年2月
  • 2020年1月
  • 2019年12月
  • 2019年11月
  • 2019年10月
  • 2019年9月
  • 2019年8月
  • 2019年7月
  • 2019年6月
  • 2019年5月
  • 2019年4月
  • 2019年3月
  • 2019年2月
  • 2019年1月
  • 2018年12月
  • 2018年11月
  • 2018年10月
  • 2018年9月
  • 2018年7月
  • 2018年6月
  • 2018年3月
  • 2018年2月
  • 2018年1月
  • 2017年12月
  • 2017年11月
  • 2017年10月
  • 2017年9月
  • 2017年8月
  • 2017年7月
  • 2017年6月
  • 2017年5月
  • 2017年4月
  • 2017年3月
  • 2017年1月
  • 2016年12月
  • 2016年11月
  • 2016年10月
  • 2016年9月
  • 2016年8月
  • 2016年7月
  • 2016年6月
  • 2016年5月
  • 2016年4月
  • 2016年3月
  • 2016年2月
  • 2015年8月
  • 2015年7月
  • 2015年6月
  • 2015年5月
  • 2014年7月
  • 2014年6月
  • 2014年5月
  • 1970年1月

分类目录

  • Database
  • focus—-实时热搜
  • IC设计
  • js&jquery
  • PHP
  • Python
  • 新技术研习
  • 服务器相关技术
  • 算法
  • 缓存技术
  • 随笔

功能

  • 注册
  • 登录
  • 文章RSS
  • 评论RSS
  • WordPress.org
© 2026 charlie笔记 ·