Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

分类:Python

python笔记,python案例,python学习

python支持断点续传的多线程下载示例

12 9月10 11月 by helenadmin

代码如下: #! /usr/bin/env python#coding=utf-8 from __future […]

Continue reading
Posted in Python · Leave a comment

python使用递归解决全排列数字示例

12 9月10 11月 by helenadmin

第一种方法:递归 代码如下: def perms(elements): if len(elements)

Continue reading
Posted in Python · Leave a comment

python检测服务器是否正常

12 9月10 11月 by helenadmin

经常使用python检测服务器是否能ping通, 程序是否正常运行(检测对应的端口是否正常) 以前使用shel […]

Continue reading
Posted in Python · Leave a comment

python使用cookielib库示例分享

12 9月10 11月 by helenadmin

该模块主要功能是提供可存储cookie的对象。使用此模块捕获cookie并在后续连接请求时重新发送,还可以用来 […]

Continue reading
Posted in Python · Leave a comment

python使用代理抓取网站图片(多线程)

12 9月10 11月 by helenadmin

一、功能说明:1. 多线程方式抓取代理服务器,并多线程验证代理服务器ps 代理服务器是从http://www. […]

Continue reading
Posted in Python · Leave a comment

python实现zencart产品数据导入到magento(python导入数据)

12 9月10 11月 by helenadmin

python版本要求在3.3.x,需要mysql connector for python第三方库支持不适用所 […]

Continue reading
Posted in Python · Leave a comment

python中使用sys模板和logging模块获取行号和函数名的方法

12 9月10 11月 by helenadmin

对于python,这几天一直有两个问题在困扰我:1.python中没办法直接取得当前的行号和函数名。这是有人在 […]

Continue reading
Posted in Python · Leave a comment

python的lambda匿名函数的简单介绍

12 9月10 11月 by helenadmin

lambda函数也叫匿名函数,即,函数没有具体的名称。先来看一个最简单例子: 代码如下: def f(x):r […]

Continue reading
Posted in Python · Leave a comment

python爬取网站数据保存使用的方法

12 9月10 11月 by helenadmin

编码问题因为涉及到中文,所以必然地涉å […]

Continue reading
Posted in Python · Leave a comment

跨平台python异步回调机制实现和使用方法

12 9月10 11月 by helenadmin

1 将下面代码拷贝到一个文件,命名为asyncore.py 代码如下: import socketimport […]

Continue reading
Posted in Python · Leave a comment

python三元运算符实现方法

12 9月10 11月 by helenadmin

这是今天在温习lambda表达式的时候想到的问题,众所周知c系列语言中的 三元运算符(?:)是一个非常好用的语 […]

Continue reading
Posted in Python · Leave a comment

python定时采集摄像头图像上传ftp服务器功能实现

12 9月10 11月 by helenadmin

首先是截图,从摄像头截取一幅图像: 代码如下: while 1: #测试摄像头的存在 try: cam = d […]

Continue reading
Posted in Python · Leave a comment

c++生成dll使用python调用dll的方法

12 9月10 11月 by helenadmin

第一步,建立一个cpp的dll工程,然后写如下代码,生成dll 代码如下: #include #define […]

Continue reading
Posted in Python · Leave a comment

python网页请求urllib2模块简单封装代码

12 9月10 11月 by helenadmin

对python网页请求模块urllib2进行简单的封装。 例子: 代码如下: #!/usr/bin/pytho […]

Continue reading
Posted in Python · Leave a comment

python实现倒计时的示例

12 9月10 11月 by helenadmin

代码如下: import timecount = 0 a = input(‘time:&#8217 […]

Continue reading
Posted in Python · Leave a comment

python为tornado添加recaptcha验证码功能

12 9月10 11月 by helenadmin

代码如下: from urllib.request import urlopen from urllib.pa […]

Continue reading
Posted in Python · Leave a comment

python使用循环实现批量创建文件夹示例

12 9月10 11月 by helenadmin

代码很简单,其中用到了python的sys模块,大家参考使用吧 代码如下: import os,sysbase […]

Continue reading
Posted in Python · Leave a comment

使用python绘制人人网好友关系图示例

12 9月10 11月 by helenadmin

代码依赖:networkx matplotlib 代码如下: #! /bin/env python# -*- […]

Continue reading
Posted in Python · Leave a comment

使用python获取cpu、内存和硬盘等windowns系统信息的2个例子

12 9月10 11月 by helenadmin

例子一: python用wmi模块获取windowns系统的硬件信息:硬盘分区、使用情况,内存大小,cpu型号 […]

Continue reading
Posted in Python · Leave a comment

python用于url解码和中文解析的小脚本(pythonurldecoder)

12 9月10 11月 by helenadmin

代码如下: # -*- coding: utf8 -*- #! python print(repr(&#822 […]

Continue reading
Posted in Python · Leave a comment

python正则表达式抓取成语网站

12 9月10 11月 by helenadmin

1、首先找到一个在线成语网站 2、查看网页结构,定义正则式看一下要抓的成语的标签有什么特点,查看源码,可以发现 […]

Continue reading
Posted in Python · Leave a comment

python双向链表实现实例代码

12 9月10 11月 by helenadmin

示意图: python双向链表实现代码: 代码如下: #!/usr/bin/python# -*- codin […]

Continue reading
Posted in Python · Leave a comment

python线程锁(thread)学习示例

12 9月10 11月 by helenadmin

代码如下: # encoding: utf-8import threadimport time# 一个用于在线 […]

Continue reading
Posted in Python · Leave a comment

python模拟登录百度代码分享(获取百度贴吧等级)

12 9月10 11月 by helenadmin

代码如下: # -*- coding: utf8 -*-”’created on 20 […]

Continue reading
Posted in Python · Leave a comment

python在命令行下使用google翻译(带语音)

12 9月10 11月 by helenadmin

说明1. 使用google翻译服务获得翻译和语音;2. 使用mplayer播放获得的声音文件,因此,如果要播放 […]

Continue reading
Posted in Python · Leave a comment

python命令行参数sys.argv使用示例

12 9月10 11月 by helenadmin

代码如下: #diff.py#!/bin/env python import sys if len(sys.a […]

Continue reading
Posted in Python · Leave a comment

python求素数示例分享

12 9月10 11月 by helenadmin

代码如下: # 判断是否是素数def is_sushu(num): res=true for x in ran […]

Continue reading
Posted in Python · Leave a comment

python遍历文件夹并删除特定格式文件的示例

12 9月10 11月 by helenadmin

代码如下: #!/usr/bin/python# -*- coding: utf-8 -*- import o […]

Continue reading
Posted in Python · Leave a comment

python基础教程之简单入门说明(变量和控制语言使用方法)

12 9月10 11月 by helenadmin

简介有兴趣可以看看: 解释性语言+动态类型语言+强类型语言交互模式:(主要拿来试验,可以试试 ipython) […]

Continue reading
Posted in Python · Leave a comment

使用python实现扫描端口示例

12 9月10 11月 by helenadmin

python最简洁易懂的扫描端口代码.运行绝对会很有惊奇感 代码如下: from threading impo […]

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
© 2025 charlie笔记 ·