Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

作者:test16604225

python编码和unicode

10 2月01 1月 by test16604225

  我确定有很多关于unicode和python的说明,但为了方便自己的理解使用,我还是打算再写一些关于它们的 […]

Continue reading
Posted in 未分类 · Leave a comment

pythonyield用法解析

10 2月01 1月 by test16604225

  您可能听说过,带有 yield 的函数在 python 中被称之为 generator(生成器),何谓 g […]

Continue reading
Posted in 未分类 · Leave a comment

python计算机语言中的王者

10 2月01 1月 by test16604225

  最近我发现了这个pypl——编程语言流行指数。它对各种语言的流行指标进行了二次发掘。作者指出tiobe指数 […]

Continue reading
Posted in 未分类 · Leave a comment

高效的python代码

10 2月01 1月 by test16604225

  在我看来,python社区分为了三个流派,分别是python 2.x组织,3.x组织和pypy组织。这个分 […]

Continue reading
Posted in 未分类 · Leave a comment

设置sublimetext编辑器的python开发环境

10 2月01 1月 by test16604225

  最近,当我主要使用python开发环境编辑的时候,我开始越来越多地用到sublinme text 2.这篇 […]

Continue reading
Posted in 未分类 · Leave a comment

用python做个简单的井字游戏

10 2月01 1月 by test16604225

  在这个教程中,我将展示如何利用python来做一个井字游戏。这将包括函数、列表、if语句、while循环、 […]

Continue reading
Posted in 未分类 · Leave a comment

如何使用python进行稳定可靠的文件操作

10 2月01 1月 by test16604225

  程序需要更新文件。虽然大部分程序员知道在执行i/o的时候会发生不可预期的事情,但是我经常看到一些异常幼稚的 […]

Continue reading
Posted in 未分类 · Leave a comment

如何使用python获取linux的系统信息

10 2月01 1月 by test16604225

  在本文中,我们将会探索使用python编程语言工具来检索linux系统各种信息。走你。  哪个python […]

Continue reading
Posted in 未分类 · Leave a comment

如何用python开发游戏

10 2月01 1月 by test16604225

  这是一篇由教程团队成员julian meyer发表的文章,一个12岁的python开发人员。你可以在goo […]

Continue reading
Posted in 未分类 · Leave a comment

python中gui开发工具的选择

10 2月01 1月 by test16604225

  python最大的特点就在于她的快速开发功能。作为一种胶水型语言,python几乎可以渗透在我们编程过程中 […]

Continue reading
Posted in 未分类 · Leave a comment

python程序员常用的ide和其它开发工具

10 2月01 1月 by test16604225

概述 “工欲善其事,必先利其器”,如果说编程是程序员的手艺,那么ide就是程序员的吃饭家伙了。 ide的全称是 […]

Continue reading
Posted in 未分类 · Leave a comment

使用python开发windows桌面程序

10 2月01 1月 by test16604225

一、开发前期准备 1. boa-constructor-0.6.1.bin.setup.exe #一个wxwi […]

Continue reading
Posted in 未分类 · Leave a comment

详解python3.x和python2.x的区别

10 2月01 1月 by test16604225

python3.x 是python的革命性升级,废除了许多之前的特性,也引入了新特性。对 1.x 和 2.x的 […]

Continue reading
Posted in 未分类 · Leave a comment

python中的常用的模块介绍

10 2月01 1月 by test16604225

在程序设计中,为完成某一功能所需的一段程序或子程序;或指能由编译程序、装配程序等处理的独立程序单位;或指大型软 […]

Continue reading
Posted in 未分类 · Leave a comment

看懂一张图快速入门python

10 2月01 1月 by test16604225

这个图太棒了,有编程基础的人一下子就了解 python 的用法了。真正的 30 分钟上手。 中文版,点击看大图 […]

Continue reading
Posted in 未分类 · Leave a comment

介绍技巧给python初学者

10 2月01 1月 by test16604225

  以下是我近些年收集的一些python实用技巧和工具,希望能对你有所帮助。   交换变量 x = 6 y = […]

Continue reading
Posted in 未分类 · Leave a comment

python简介

10 2月01 1月 by test16604225

  python 是一种面向对象的解释性的计算机程序设计语言,也是一种功能强大而完善的通用型语言,已经具有十多 […]

Continue reading
Posted in 未分类 · Leave a comment

python的安装与使用

10 2月01 1月 by test16604225

  python是一种功能强大的解释执行自动编译的动态型语言,面向对象的同时还支持面向过程的编程,有灵活方便数 […]

Continue reading
Posted in 未分类 · Leave a comment

python和django安装步骤

10 2月01 1月 by test16604225

很多初学者都问python和django怎么安装,这里我们就简单地介绍一下这两个软件在windows 2003 […]

Continue reading
Posted in 未分类 · Leave a comment

python实现车牌定位及分割

10 2月01 1月 by test16604225

具体步骤 1、将采集到的彩色车牌图像转换成灰度图2、灰度化的图像利用高斯平滑处理后,再对其进行中直滤波3、使用 […]

Continue reading
Posted in 未分类 · Leave a comment

python爬虫模拟登陆教务处并且保存数据到本地

10 2月01 1月 by test16604225

刚开始接触#wiki/1514.html” target=”_blank” […]

Continue reading
Posted in 未分类 · Leave a comment

12步轻松搞定python装饰器!

10 2月01 1月 by test16604225

呵呵!作为一名教python的老师,我发现学生们基本上一开始很难搞定python的装饰器,也许因为装饰器确实很 […]

Continue reading
Posted in 未分类 · Leave a comment

python爬虫[一]批量下载妹子图

10 2月01 1月 by test16604225

煎蛋网上的妹子图专题有着质量很高的美女#css/css-rwd-images.html” targ […]

Continue reading
Posted in 未分类 · Leave a comment

python爬取百度美女图片

10 2月01 1月 by test16604225

通过#wiki/1514.html” target=”_blank”>py […]

Continue reading
Posted in 未分类 · Leave a comment

python3文件操作详解

10 2月01 1月 by test16604225

文件操作的步骤: 打开文件 -> 操作文件 -> 关闭文件 切记:最后要关闭文件(否则可能会有意想不到的结果) […]

Continue reading
Posted in 未分类 · Leave a comment

介绍python中字符串连接的几种常用方式

10 2月01 1月 by test16604225

python中有很多字符串连接方式,今天在写代码,顺便总结一下: 最原始的字符串连接方式:str1 + str […]

Continue reading
Posted in 未分类 · Leave a comment

python中template的使用介绍

10 2月01 1月 by test16604225

template无疑是一个好东西,可以将字符串的格式固定下来,重复利用。同时template也可以让开发人员可 […]

Continue reading
Posted in 未分类 · Leave a comment

python中镜像实现方法

10 2月01 1月 by test16604225

图像的镜像变化不改变图像的形状。图像的镜像变换分为三种:水平镜像、垂直镜像、对角镜像 设图像的大小为m×n,则 […]

Continue reading
Posted in 未分类 · Leave a comment

python中格式化输出字符串使用format()函数用法

10 2月01 1月 by test16604225

python中格式化输出字符串使用format()函数, 字符串即类, 可以使用方法; python是完全面向 […]

Continue reading
Posted in 未分类 · Leave a comment

python基础中的字符串详解

10 2月01 1月 by test16604225

python的字符串可以使用单引号(‘), 双引号(“), 三引号(”&# […]

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