Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

作者:helenadmin

python三元运算符实现方法

12 9月10 11月 by helenadmin

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

Continue reading
Posted in Python · Leave a comment

python使用pyv8执行javascript代码示例分享

12 9月10 11月 by helenadmin

安装相应的库,我使用的是pyv8 需要注意的是里面写的function函数需要用()括起来 代码如下: imp […]

Continue reading
Posted in Python · Leave a comment

python使用reportlab画图示例(含中文汉字)

12 9月10 11月 by helenadmin

准备工作 开发环境:python2.6,reportlab 准备中文字体文件:simsun.ttc 代码: 代 […]

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获取gy

12 9月10 11月 by helenadmin

先看效果图

Continue reading
Posted in Python · Leave a comment

python使用xmlrpc实例讲解

12 9月10 11月 by helenadmin

rpc是remote procedure call的缩写,翻译成中文就是远程方法调用,是一种在本地的机器上调用 […]

Continue reading
Posted in Python · Leave a comment

python使用urllib2模块获取gravatar头像实例

12 9月10 11月 by helenadmin

gravatar注册地址: https://en.gravatar.com/ 代码如下: “&#8 […]

Continue reading
Posted in Python · Leave a comment

pythonsocket网络编程步骤详解(socket套接字使用)

12 9月10 11月 by helenadmin

一、套接字套接字是为特定网络协议(例如tcp/ip,icmp/ip,udp/ip等)套件对上的网络应用程序提供 […]

Continue reading
Posted in Python · Leave a comment

python查找第k小元素代码分享

12 9月10 11月 by helenadmin

代码如下: # -*- coding: utf-8 -*- from random import randin […]

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

netbeans7安装python插件的方法图解

12 9月10 11月 by helenadmin

我们可以手动来添加地址和安装。如图所示: 方法:netbeans界面,“工具”->“插件”, 点击“设置”-> […]

Continue reading
Posted in Python · Leave a comment

python多线程http下载实现示例

12 9月10 11月 by helenadmin

测试平台 ubuntu 13.04 x86_64 python 2.7.4 花了将近两个小时, 问题主要刚开始 […]

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

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

Continue reading
Posted in Python · Leave a comment

用python编程实现语音控制电脑

12 9月10 11月 by helenadmin

电脑面前的你,是否也希望能让电脑听命于你? 当你累的时候,只需说一声“我累了”,电脑就会放着优雅的轻音乐来让你 […]

Continue reading
Posted in Python · Leave a comment

python抓取discuz!用户名脚本代码

12 9月10 11月 by helenadmin

最近学习python,于是就用python写了一个抓取discuz!用户名的脚本,代码很少但是很搓。思路很简单 […]

Continue reading
Posted in Python · Leave a comment

python正则表达式判断字符串是否是全部小写示例

12 9月10 11月 by helenadmin

代码如下: # -*- coding: cp936 -*-import re s1 = ‘adkk […]

Continue reading
Posted in Python · Leave a comment

win7安装python生成随机数代码分享

12 9月10 11月 by helenadmin

代码如下: import random def genrand(small, big) : return sm […]

Continue reading
Posted in Python · Leave a comment

python抓取京东商城手机列表url实例代码

12 9月10 11月 by helenadmin

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

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调用cmd复制文件代码分享

12 9月10 11月 by helenadmin

代码如下: import os def load() : filename = os.getcwd() + r […]

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

python模拟新浪微博登陆功能(新浪微博爬虫)

12 9月10 11月 by helenadmin

1、主函数(weibomain.py): 代码如下: import urllib2import cookiel […]

Continue reading
Posted in Python · Leave a comment

python模拟登陆tom邮箱示例分享

12 9月10 11月 by helenadmin

代码如下: def logintom(username, password): url1 = ”& […]

Continue reading
Posted in Python · Leave a comment

python正则匹配查询港澳通行证办理进度示例分享

12 9月10 11月 by helenadmin

代码如下: import socketimport re ”’广东省公安厅出入境政务服 […]

Continue reading
Posted in Python · Leave a comment

python发送伪造的arp请求

12 9月10 11月 by helenadmin

代码如下: #!/usr/bin/env pythonimport socket s = socket.soc […]

Continue reading
Posted in Python · Leave a comment

python生成随机数的方法

12 9月10 11月 by helenadmin

如果你对在python生成随机数与random模块中最常用的几个函数的关系与不懂之处,下面的文章就是对pyth […]

Continue reading
Posted in Python · Leave a comment

python获取当前时间的方法

12 9月10 11月 by helenadmin

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

Continue reading
Posted in Python · Leave a comment

linux系统使用python监控apache服务器进程脚本分享

12 9月10 11月 by helenadmin

crtrl.py监控apache服务器进程的python 脚本 代码如下: !/usr/bin/env pyt […]

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

文章导航

先前文章
较新文章

近期文章

  • 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笔记 ·