Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

月份:2016年7月

python中使用tkinter模块创建gui程序实例

05 7月01 1月 by test30307667

使用tkinter模块来创建简单的gui程序。 tkinter的widgets有:button、canvas、 […]

Continue reading
Posted in 未分类 · Leave a comment

python获取本地计算机名字的方法

05 7月01 1月 by test4807991

本文实例讲述了python获取本地计算机名字的方法。分享给大家供大家参考。具体如下: import sys, […]

Continue reading
Posted in 未分类 · Leave a comment

浅析python中的序列化存储的方法

05 7月01 1月 by test4807991

在程序运行的过程中,所有的变量都是在内存中,比如,定义一个dict: d = dict(name=&#8217 […]

Continue reading
Posted in 未分类 · Leave a comment

如何选择业余学习编程的方向?

05 7月01 1月 by test16134286

回复内容: python flask web,别想别的了,三心二意发私信问我的你也不是第一个,认清自己,好好干 […]

Continue reading
Posted in 未分类 · Leave a comment

python实现的简单算术游戏实例

04 7月01 1月 by test30307667

本文实例讲述了python实现的简单算术游戏。分享给大家供大家参考。具体实现方法如下: #!/usr/bin/ […]

Continue reading
Posted in 未分类 · Leave a comment

winpython,anaconda哪个更好?

04 7月01 1月 by test16134286

python(x,y)和winpython都是开源项目,其项目负责人都是pierre raybaut。按pie […]

Continue reading
Posted in 未分类 · Leave a comment

python简单进程锁代码实例

04 7月01 1月 by test4807991

先说说线程 在多线程中,为了保证共享资源的正确性,我们常常会用到线程同步技术. 将一些敏感操作变成原子操作,保 […]

Continue reading
Posted in 未分类 · Leave a comment

浅析python中整型对象存储的位置

04 7月01 1月 by test16134286

在 python 整型对象所存储的位置是不同的, 有一些是一直存储在某个存储里面, 而其它的, 则在使用时开辟 […]

Continue reading
Posted in 未分类 · Leave a comment

python实现的使用telnet登陆聊天室实例

04 7月01 1月 by test4807991

本文实例讲述了python实现的使用telnet登陆聊天室。分享给大家供大家参考。具体如下: 前久在家学习py […]

Continue reading
Posted in 未分类 · Leave a comment

pyramidmako模板引入helper对象的步骤方法

04 7月01 1月 by test30307667

原理是我们在pyramind的before render event 中插入我们的helper 1. 创建he […]

Continue reading
Posted in 未分类 · Leave a comment

python去掉字符串中重复字符的方法

04 7月01 1月 by test16134286

代码如下: if order does not matter, you can use “&#82 […]

Continue reading
Posted in 未分类 · Leave a comment

python实现删除文件但保留指定文件

04 7月01 1月 by test30307667

由于给客户的发布版本上客户改动了些代码和图片,我们这边给他们更新publish都是增量更新(开发提供更新指定的 […]

Continue reading
Posted in 未分类 · Leave a comment

python实现简单登录验证

04 7月01 1月 by test16134286

本文实例为大家分享了简单的python登录验证,供大家参考,具体内容如下 编写登录接口 要求:1、输入用户名密 […]

Continue reading
Posted in 未分类 · Leave a comment

python的id()函数介绍

04 7月01 1月 by test30307667

>>> a = 2.5>>> b = 2.5>>> c = b>>> a is cfalse>>> a = 2 […]

Continue reading
Posted in 未分类 · Leave a comment

python找出文件中使用率最高的汉字实例详解

04 7月01 1月 by test30307667

本文实例讲述了python找出文件中使用率最高的汉字的方法。分享给大家供大家参考。具体分析如下: 这是我初学p […]

Continue reading
Posted in 未分类 · Leave a comment

python的类方法和静态方法

04 7月01 1月 by test30307667

本文实例讲述了python的类方法和静态方法。分享给大家供大家参考。具体分析如下: python没有和c++中 […]

Continue reading
Posted in 未分类 · Leave a comment

为什么中国的ruby和python活动大多在上海而不是北京?

04 7月01 1月 by test16134286

刚才看到两个ruby和一个python技术开发大会,全部都在上海。北京的技术人员,创业者岂不更多? http: […]

Continue reading
Posted in 未分类 · Leave a comment

想学习pythondjango,请推荐从入门到精通各个阶段的好书?

04 7月01 1月 by test16134286

回复内容: django documentation 对着doc做项目吧~ 可参考这个 学 python 发现 […]

Continue reading
Posted in 未分类 · Leave a comment

python中stdout输出不缓存的设置方法

04 7月01 1月 by test16134286

考虑以下python程序: 代码如下: #!/usr/bin/env pythonimport syssys. […]

Continue reading
Posted in 未分类 · Leave a comment

跟老齐学python之永远强大的函数

04 7月01 1月 by test16134286

函数,对于人类来讲,能够发展到这个数学思维层次,是一个飞跃。可以说,它的提出,直接加快了现代科技和社会的发展, […]

Continue reading
Posted in 未分类 · Leave a comment

python通过poll实现异步io的方法

04 7月01 1月 by test30307667

本文实例讲述了python通过poll实现异步io的方法。分享给大家供大家参考。具体分析如下: 在使用poll […]

Continue reading
Posted in 未分类 · Leave a comment

一个计算身份证号码校验位的python小程序

04 7月01 1月 by test16134286

s = sum(ai * wi), i=0,…….16 (现在的身份证号码都是18位长 […]

Continue reading
Posted in 未分类 · Leave a comment

python中暂存上传图片的方法

03 7月01 1月 by test30307667

很简单的代码,记录一下。 代码如下: import image image = image.open(&#82 […]

Continue reading
Posted in 未分类 · Leave a comment

怎么理解元编程?

03 7月01 1月 by test16134286

常看到元编程这个字眼,怎么理解元编程。希望别复制粘贴答案。回复内容: meta- 这个前缀在希腊语中的本意是「 […]

Continue reading
Posted in 未分类 · Leave a comment

使用python解析json数据的基本方法

03 7月01 1月 by test4807991

python的json模块提供了一种很简单的方式来编码和解码json数据。 其中两个主要的函数是 json.d […]

Continue reading
Posted in 未分类 · Leave a comment

为什么像java、c、c++这样的静态语言会比python、ruby这样的动态语言流行得多?

03 7月01 1月 by test16134286

个人觉得像 ruby 这样的动态语言简洁得多。回复内容: 我觉得不应该看静态还是动态,而要看强类型和弱类型。强 […]

Continue reading
Posted in 未分类 · Leave a comment

python字符串和文件操作常用函数分析

03 7月01 1月 by test30307667

本文实例分析了python字符串和文件操作常用函数。分享给大家供大家参考。具体如下: # -*- coding […]

Continue reading
Posted in 未分类 · Leave a comment

python的bottle框架中实现最基本的get和post的方法的教程

03 7月01 1月 by test4807991

1、get方式: # -*- coding: utf-8 -*- #!/usr/bin/python # fi […]

Continue reading
Posted in 未分类 · Leave a comment

浅谈python中copy()方法的使用

03 7月01 1月 by test30307667

copy()方法返回字典的浅拷贝。 语法 以下是copy()方法的语法: dict.copy() 参数 na […]

Continue reading
Posted in 未分类 · Leave a comment

python数据类型详解(四)字典:dict

03 7月01 1月 by test16134286

一.基本数据类型   整数:int   字符串:str(注:\t等于一个tab键)   布尔值: bool   […]

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