Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

作者:test16134286

使用python进行稳定可靠的文件操作详解

13 11月01 1月 by test16134286

考虑下述python代码片段。对文件中的数据进行某些操作,然后将结果保存回文件中: 代码如下: with op […]

Continue reading
Posted in 未分类 · Leave a comment

python3实现连接sqlite数据库的方法

12 11月01 1月 by test16134286

本文实例讲述了python3实现连接sqlite数据库的方法,对于python的学习有不错的参考借鉴价值。分享 […]

Continue reading
Posted in 未分类 · Leave a comment

如果每天坚持用12个小时学习一门编程语言,一年下来,编程能力会达到什么程度?

12 11月01 1月 by test16134286

如果每天坚持用12个小时学习一门编程语言,一年内每天除了吃饭睡觉拉撒都在学习编程语言,比如学python(包括 […]

Continue reading
Posted in 未分类 · Leave a comment

python有哪些好的web框架?

12 11月01 1月 by test16134286

pylons 如何?回复内容: 对初学者来说,循序渐进是最重要的,我推荐学习 flask(welcome | […]

Continue reading
Posted in 未分类 · Leave a comment

pythonrequests安装与简单运用

11 11月01 1月 by test16134286

requests是python的一个http客户端库,跟urllib,urllib2类似,那为什么要用requ […]

Continue reading
Posted in 未分类 · Leave a comment

python入门学习指南?

11 11月01 1月 by test16134286

最近想学python,在网上找了很多资料,发现python路径 – 实验楼,不知道考不考谱?回复内 […]

Continue reading
Posted in 未分类 · Leave a comment

从零学python系列之新版本导入httplib模块报importerror解决方案

10 11月01 1月 by test16134286

之前用python 2.7版本的httplib做接口测试时,运行代码都是正常的, 最近开始用python 3. […]

Continue reading
Posted in 未分类 · Leave a comment

创业公司如何能吸引一名优秀的python开发者?

10 11月01 1月 by test16134286

开源的思想?geek的思维?高薪?弹性平台?妹子?回复内容: 多给钱、画大饼 不是技术大拿或名人,在国外某孵化 […]

Continue reading
Posted in 未分类 · Leave a comment

对于学自然语言处理方向的学生来说,学perl好还是学python好?理由是什么?

10 11月01 1月 by test16134286

回复内容: 建议选择 python 吧,日子会好过些。 python 的 natural language t […]

Continue reading
Posted in 未分类 · Leave a comment

python算法学习之计数排序实例

10 11月01 1月 by test16134286

python算法学习之计数排序实例 代码如下: # -*- coding: utf-8 -*- def _co […]

Continue reading
Posted in 未分类 · Leave a comment

python实现包含min函数的栈

10 11月01 1月 by test16134286

本文实例讲述了python实现包含min函数的栈。分享给大家供大家参考,具体如下: # coding=utf8 […]

Continue reading
Posted in 未分类 · Leave a comment

python使用urllib模块开发的多线程豆瓣小站mp3下载器

10 11月01 1月 by test16134286

代码如下: #! /usr/bin/python2.7# — coding:utf-8 &#821 […]

Continue reading
Posted in 未分类 · Leave a comment

python实现异步回调机制代码分享

10 11月01 1月 by test16134286

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

Continue reading
Posted in 未分类 · Leave a comment

python益智游戏计算汉诺塔问题示例

10 11月01 1月 by test16134286

汉诺塔(又称河内塔)问题是源于印度一个古老传说的益智玩具。大梵天创造世界的时候做了三根金刚石柱子,在一根柱子上 […]

Continue reading
Posted in 未分类 · Leave a comment

python操作摄像头截图实现远程监控的例子

10 11月01 1月 by test16134286

最近用python写了一个远程监控的程序,主要功能有:1.用邮件控制所以功能2.可以对屏幕截图,屏幕截图发送到 […]

Continue reading
Posted in 未分类 · Leave a comment

python实现全局变量的两个解决方法

09 11月01 1月 by test16134286

本文针对python的全局变量实现方法简述如下: 先来看下面一段测试程序: count = 0 def fuc […]

Continue reading
Posted in 未分类 · Leave a comment

python基础教程之数字处理(math)模块详解

09 11月01 1月 by test16134286

1.math简介 代码如下: >>> import math>>>dir(math) #这句可查看所有函数名列 […]

Continue reading
Posted in 未分类 · Leave a comment

使用python编写基于dht协议的bt资源爬虫

09 11月01 1月 by test16134286

关于dht协议 dht协议作为bt协议的一个辅助,是非常好玩的。它主要是为了在bt正式下载时得到种子或者bt资 […]

Continue reading
Posted in 未分类 · Leave a comment

为什么python(或ruby、perl等)没有取代bash成为系统shell?

09 11月01 1月 by test16134286

关联问题:http://www.zhihu.com/question/20244763如果编程语言是否可以作为 […]

Continue reading
Posted in 未分类 · Leave a comment

微软的c#难学吗?和python比起来

08 11月01 1月 by test16134286

如题回复内容: c#是我的最爱,简单易用与vs配合起来真是写得飞起。1基本上不需要背太多东西。因而学起来非常简 […]

Continue reading
Posted in 未分类 · Leave a comment

python批量修改文件名的实现代码

08 11月01 1月 by test16134286

#coding:utf-8 #批量修改文件名 import os import re import datet […]

Continue reading
Posted in 未分类 · Leave a comment

python实现dnspod自动更新dns解析的方法

08 11月01 1月 by test16134286

代码如下: def ddns():”””用当前ip更新ddns&#8221 […]

Continue reading
Posted in 未分类 · Leave a comment

关于python,请教这两个程序有什么不同,为什么运行结果不一样?

08 11月01 1月 by test16134286

第一个程序a = open(‘test.txt’,’w’)a. […]

Continue reading
Posted in 未分类 · Leave a comment

python写的socks5协议代理服务器

08 11月01 1月 by test16134286

直接上代码: #!/usr/bin/python # filename s5.py # python dyna […]

Continue reading
Posted in 未分类 · Leave a comment

python获取糗百图片代码实例

08 11月01 1月 by test16134286

代码如下: from sgmllib import sgmlparserimport urllib2 clas […]

Continue reading
Posted in 未分类 · Leave a comment

从零学python之helloworld

08 11月01 1月 by test16134286

简单的‘hello world!’ python命令行 假设你已经安装好了python, 那么在l […]

Continue reading
Posted in 未分类 · Leave a comment

python遍历目录的方法小结

07 11月01 1月 by test16134286

本文实例总结了python遍历目录的方法。分享给大家供大家参考,具体如下: 方法一使用递归: “& […]

Continue reading
Posted in 未分类 · Leave a comment

“男友让我打十万个「对不起」,汉字标上多少遍。”这个问题用r如何实现?

07 11月01 1月 by test16134286

关键是“汉字标上多少遍”。还有“对不起”必须是中文的。男友让我打十万个「对不起」,汉字标上多少遍。如何快速实现 […]

Continue reading
Posted in 未分类 · Leave a comment

python写的discuz7.2版faq.php注入漏洞工具

06 11月01 1月 by test16134286

discuz 7.2 faq.php全自动利用工具,getshell 以及dump数据,python 版的uc […]

Continue reading
Posted in 未分类 · Leave a comment

跟老齐学python之画圈还不简单吗?

06 11月01 1月 by test16134286

在python中,循环有一个语句:for语句。 简单的for循环例子 >>> hello = “w […]

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