Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

作者:test30418249

python正则分析nginx的访问日志

15 3月01 1月 by test30418249

前言 本文的脚本是分析nginx的访问日志, 主要为了检查站点uri的访问次数的,检查的结果会提供给研发人员做 […]

Continue reading
Posted in 未分类 · Leave a comment

python基础教程之filter使用方法

15 3月01 1月 by test30418249

python filter python中的内置函数filter()主要用于过滤序列。 和map类似,filt […]

Continue reading
Posted in 未分类 · Leave a comment

python基础教程之匿名函数lambda

15 3月01 1月 by test30418249

python lambda 当我们在使用函数时,有时候,并不需要显示的定义一个函数,我们可以使用匿名函数更加方 […]

Continue reading
Posted in 未分类 · Leave a comment

python下如何查询cs反恐精英的服务器信息

15 3月01 1月 by test30418249

前言 服务器的相关知识曾经让我非常困惑。我相信还有很多的python开发者和我有着类似的遭遇。本文主要介绍了p […]

Continue reading
Posted in 未分类 · Leave a comment

python正则表达式匹配中文用法示例

15 3月01 1月 by test30418249

本文实例讲述了python正则表达式匹配中文用法。分享给大家供大家参考,具体如下: #!/usr/bin/py […]

Continue reading
Posted in 未分类 · Leave a comment

python获取某一天是星期几的方法示例

15 3月01 1月 by test30418249

本文实例讲述了python获取某一天是星期几的方法。分享给大家供大家参考,具体如下: 这里以2017年的春节( […]

Continue reading
Posted in 未分类 · Leave a comment

python基础教程之map使用方法

15 3月01 1月 by test30418249

python map map会将一个函数映射到一个输入列表的所有元素上。map的规范为:map(functio […]

Continue reading
Posted in 未分类 · Leave a comment

ansible作为python模块库使用的方法实例

15 3月01 1月 by test30418249

ansible是一个python package,是个完全的unpack and play软件,对客户端唯一的 […]

Continue reading
Posted in 未分类 · Leave a comment

python实现下载整个ftp目录的方法

15 3月01 1月 by test30418249

这篇文章主要介绍了python实现下载整个ftp目录的方法,文中给出了详细的示例代码,相信对大家的理解和学习具 […]

Continue reading
Posted in 未分类 · Leave a comment

详解使用pymysql在python中对mysql的增删改查操作(综合)

15 3月01 1月 by test30418249

本篇文章主要介绍了使用pymysql在python中对mysql的增删改查操作,通过pymysql向数据库进行 […]

Continue reading
Posted in 未分类 · Leave a comment

python:socket传输大文件示例

15 3月01 1月 by test30418249

本篇文章主要介绍了python:socket传输大文件示例,具有一定的参考价值,有兴趣的可以了解一下, 文件可 […]

Continue reading
Posted in 未分类 · Leave a comment

关于python中异常(exception)的汇总

15 3月01 1月 by test30418249

异常是指程序中的例外,违例情况。异常机制是指程序出现错误后,程序的处理方法。当出现错误后,程序的执行流程发生改 […]

Continue reading
Posted in 未分类 · Leave a comment

python中的字符串操作和编码unicode详解

15 3月01 1月 by test30418249

其实字符串也是一种数据类型,但是,字符串比较特殊的是还有一个编码问题。下面这篇文章主要给大家介绍了python […]

Continue reading
Posted in 未分类 · Leave a comment

python3中的yieldfrom语法详解

15 3月01 1月 by test30418249

在python 3.3里,generator新增了一个语法 yield from,这个yield from的作 […]

Continue reading
Posted in 未分类 · Leave a comment

[python][os]分离文件目录,文件名以及文件后缀

15 3月01 1月 by test30418249

import os file_path = “d:/test/test.py”(fil […]

Continue reading
Posted in 未分类 · Leave a comment

python字符串大小写转换的简单实例

15 3月01 1月 by test30418249

下面小编就为大家带来一篇python 字符串大小写转换的简单实例。小编觉得挺不错的,现在就分享给大家,也给大家 […]

Continue reading
Posted in 未分类 · Leave a comment

python实现的多线程端口扫描功能示例

15 3月01 1月 by test30418249

本文实例讲述了python实现的多线程端口扫描功能。分享给大家供大家参考,具体如下: 下面的程序给出了对给定的 […]

Continue reading
Posted in 未分类 · Leave a comment

python使用xlrd与xlwt对excel的读写和格式设定

15 3月01 1月 by test30418249

最近在用python处理excel表的时候出现了一些问题,所以想着记录下最后的实现方式和问题解决方法。方便自己 […]

Continue reading
Posted in 未分类 · Leave a comment

python中struct模块对字节流/二进制流的操作教程

15 3月01 1月 by test30418249

最近在学习python网络编程这一块,在写简单的socket通信代码时,遇到了struct这个模块的使用,当时 […]

Continue reading
Posted in 未分类 · Leave a comment

python数据结构之队列的实现

15 3月01 1月 by test30418249

这篇文章主要介绍了python 数据结构之队列的实现的相关资料,需要的朋友可以参考下 python 队列 qu […]

Continue reading
Posted in 未分类 · Leave a comment

深入浅析c++调用python模块

15 3月01 1月 by test30418249

python 提供了 c++ 库,使得开发者能很方便地从 c++ 程序中调用 python 模块。接下来通过本 […]

Continue reading
Posted in 未分类 · Leave a comment

详解python如何调用c/c++底层库与互相传值

15 3月01 1月 by test30418249

python作为一门脚本解释语言,本身又很好的结合c++,所以使用python开发,在性能要求的地方调用c/c […]

Continue reading
Posted in 未分类 · Leave a comment

python调用c++程序的方法详解

15 3月01 1月 by test30418249

前言 大家都知道python的优点是开发效率高,使用方便,c++则是运行效率高,这两者可以相辅相成,不管是在p […]

Continue reading
Posted in 未分类 · Leave a comment

python模块easygui详细介绍

15 3月01 1月 by test30418249

python 模块easygui详细介绍 前言: 在windows想用python开发一些简单的界面,所以找到 […]

Continue reading
Posted in 未分类 · Leave a comment

python中类型检查的详细介绍

15 3月01 1月 by test30418249

前言 大家都知道python 是一门强类型、动态类型检查的语言。所谓动态类型,是指在定义变量时,我们无需指定变 […]

Continue reading
Posted in 未分类 · Leave a comment

利用python程序生成word和pdf文档的方法

15 3月01 1月 by test30418249

这篇文章主要给大家介绍了利用python程序生成word和pdf文档的方法,文中给出了详细的介绍和示例代码,相 […]

Continue reading
Posted in 未分类 · Leave a comment

利用python爬虫给孩子起个好名字

15 3月01 1月 by test30418249

前言 相信每位家长都有所体会,因为要在孩子出生后两周内起个名字(需要办理出生证明了),估计很多人都像我一样,刚 […]

Continue reading
Posted in 未分类 · Leave a comment

python之日期与时间处理模块(date和datetime)

15 3月01 1月 by test30418249

前言 在开发工作中,我们经常需要用到日期与时间,如: 作为日志信息的内容输出 计算某个功能的执行时间 用日期命 […]

Continue reading
Posted in 未分类 · Leave a comment

python遍历列表里面序号和值的方法(三种)

15 3月01 1月 by test30418249

三种遍历列表里面序号和值的方法: 最近学习python这门语言,感觉到其对自己的工作效率有很大的提升,特在情人 […]

Continue reading
Posted in 未分类 · Leave a comment

python爬虫:通过关键字爬取百度图片

15 3月01 1月 by test30418249

使用工具:python2.7 scrapy框架 sublime text3 一。搭建python(window […]

Continue reading
Posted in 未分类 · 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
© 2025 charlie笔记 ·