Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

作者:test31297505

python模块

20 6月01 1月 by test31297505

模块:自我包含并且有组织的代码片段 导入(import):把其它模块中属性附加到你的模块的操作 imptee. […]

Continue reading
Posted in 未分类 · Leave a comment

python读入文件和time/sys模块的简单使用

20 6月01 1月 by test31297505

python读入文件和time/sys模块的简单使用 一些标准库函数的用法也待学习,如:os/re/sets/ […]

Continue reading
Posted in 未分类 · Leave a comment

python修改文件

20 6月01 1月 by test31297505

#!/usr/bin/env python #coding=utf-8 import os import sy […]

Continue reading
Posted in 未分类 · Leave a comment

python学习

20 6月01 1月 by test31297505

模块 简介 你已经学习了如何在你的程序中定义一次函数而重用代码。如果你想要在其他程序中重用很多函数,那么你该如 […]

Continue reading
Posted in 未分类 · Leave a comment

pythonxapian存储结构

20 6月01 1月 by test31297505

在项目中为了支持搜索服务,我们使用xapian作为后端的搜索引擎.其因性能良好以及易用受到大家欢迎.下面是基本 […]

Continue reading
Posted in 未分类 · Leave a comment

python线程整理

20 6月01 1月 by test31297505

线程有五种状态 新建、就绪、运行、阻塞、死亡。 阻塞有三种情况: 同步阻塞是指处于竞争锁定的状态,线程请求锁定 […]

Continue reading
Posted in 未分类 · Leave a comment

python学习——输入输出

20 6月01 1月 by test31297505

输入输出 文件 你可以通过创建一个file类的对象来打开一个文件,分别使用file类的read、readlin […]

Continue reading
Posted in 未分类 · Leave a comment

python学习——异常

20 6月01 1月 by test31297505

异常 当你的程序中出现某些异常的状况的时候,异常就发生了。例如,当你想要读某个文件的时候,而那个文件不存在。或 […]

Continue reading
Posted in 未分类 · Leave a comment

python学习——python标准库

20 6月01 1月 by test31297505

python标准库 python标准库是随python附带安装的,它包含大量极其有用的模块。熟悉python标 […]

Continue reading
Posted in 未分类 · Leave a comment

python中获取python版本号的方法

20 6月01 1月 by test31297505

最近在思考如何使用python做自动化测试的问题,没啥进展。感觉国内自动化测试ruby用的比较多,目前想做一件 […]

Continue reading
Posted in 未分类 · Leave a comment

python内存释放原则

20 6月01 1月 by test31297505

def getinit(class_name): “””动态加载模块&#8 […]

Continue reading
Posted in 未分类 · Leave a comment

python异步网络探

20 6月01 1月 by test31297505

异步网络据说能极大的提高网络server的连接速度,所以打算写一个专题,来学习和了解异步网络.因为python […]

Continue reading
Posted in 未分类 · Leave a comment

pythondecorators

20 6月01 1月 by test31297505

contains: 1、decorators 2、functools 首先我们看下tornado中使用的装饰器 […]

Continue reading
Posted in 未分类 · Leave a comment

pythontips

20 6月01 1月 by test31297505

1、enum python代码 #!/usr/bin/env python # -*- coding:utf- […]

Continue reading
Posted in 未分类 · Leave a comment

redis

20 6月01 1月 by test31297505

#!/usr/bin/env python #coding=utf-8 import os import sy […]

Continue reading
Posted in 未分类 · Leave a comment

pythonmap、filter,reduce介绍

20 6月01 1月 by test31297505

1、filter(function,iterable) 引用 construct a list from th […]

Continue reading
Posted in 未分类 · Leave a comment

用wxpython写的一个天气预报

20 6月01 1月 by test31297505

自学了半个多月python和wx,想写个天气预报练练手,可是写的时候遇到了很多问题,非常纠结,索性把东西上传给 […]

Continue reading
Posted in 未分类 · Leave a comment

python获取网站图片

20 6月01 1月 by test31297505

# zhouxianglh 2013.05.03 python3.3 import urllib.reques […]

Continue reading
Posted in 未分类 · Leave a comment

python发送邮件smtplib

20 6月01 1月 by test31297505

可以利用smtplib模块来实现发送邮件的功能,一个比较简单的实例代码如下: # import smtplib […]

Continue reading
Posted in 未分类 · Leave a comment

python的中文字符乱码

20 6月01 1月 by test31297505

打算用python解析一下网络日志文件。 必然地遇上了中文乱码的问题。 小弟以前学java,用python解决 […]

Continue reading
Posted in 未分类 · Leave a comment

pythontime,datetime,string转换

20 6月01 1月 by test31297505

# 把datetime转成字符串 def datetime_tostring(dt): return dt.s […]

Continue reading
Posted in 未分类 · Leave a comment

python时间格式化

20 6月01 1月 by test31297505

函 数strftime()的操作有些类似于sprintf():识别以百分号(%)开始的格式命令集合,格式化输出 […]

Continue reading
Posted in 未分类 · Leave a comment

python常用函数

20 6月01 1月 by test31297505

一、数学相关 1、绝对值:abs(-1) 2、最大最小值:max([1,2,3])、min([1,2,3]) […]

Continue reading
Posted in 未分类 · Leave a comment

python字符串内建函数

20 6月01 1月 by test31297505

string.capitalize() 把字符串的第一个字符大写 string.center(width) 返 […]

Continue reading
Posted in 未分类 · Leave a comment

python类型转换、数值操作

20 6月01 1月 by test31297505

函数 描述 int(x [,base ]) 将x转换为一个整数 long(x [,base ]) 将x转换为一 […]

Continue reading
Posted in 未分类 · Leave a comment

pythonthreadpractices

20 6月01 1月 by test31297505

“””” python中使用线程有两种方式:函数或者用类来包装 […]

Continue reading
Posted in 未分类 · Leave a comment

pythondjango|bootstrap

20 6月01 1月 by test31297505

1. 在ubuntu12下想安装scim,把ibus都卸载了,结果没能成功。。。放弃了一段时间想用英语更新发现 […]

Continue reading
Posted in 未分类 · Leave a comment

pythondjango|models

20 6月01 1月 by test31297505

学习大牛的网站: models类修改后数据库也应同样更新,但是syncdb命令仅仅创建数据库里的表,并不对数据 […]

Continue reading
Posted in 未分类 · Leave a comment

python读取excelxlrd

20 6月01 1月 by test31297505

1. 去 https://pypi.python.org/pypi/xlrd/0.9.2下载xlrd-0.9. […]

Continue reading
Posted in 未分类 · Leave a comment

java调用python

20 6月01 1月 by test31297505

今天遇到java调用一个python脚本的问题,纠结了大半天,遇到各种问题。网上搜索的大部分都是用jython […]

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