Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

月份:2016年12月

python实现子类调用父类的方法

17 12月01 1月 by test30307667

本文实例讲述了python实现子类调用父类的方法。分享给大家供大家参考。具体实现方法如下: python和其他 […]

Continue reading
Posted in 未分类 · Leave a comment

为什么c++读取文件会比python慢?

17 12月01 1月 by test16134286

问题是这样的,我有一个文件夹大概有10万行数据,然后用c++和python分别其数出有多少行数据是符合要求的。 […]

Continue reading
Posted in 未分类 · Leave a comment

python中的yield浅析

17 12月01 1月 by test16134286

在介绍yield前有必要先说明下python中的迭代器(iterator)和生成器(constructor)。 […]

Continue reading
Posted in 未分类 · Leave a comment

#/bin/python是运行什么命令的?

17 12月01 1月 by test16134286

#/bin/python是运行什么命令的?求大牛详解。。。初学python,练习的时候遇到这个,被鄙视,呜呜~ […]

Continue reading
Posted in 未分类 · Leave a comment

使用python删除nginx缓存文件示例(python文件操作)

17 12月01 1月 by test16134286

调用时输入参数如: www.bitscn.com/表示删除www.bitscn.com首页的缓存, www.b […]

Continue reading
Posted in 未分类 · Leave a comment

以一个投票程序的实例来讲解python的django框架使用

16 12月10 11月 by test4807991

(一)关于django django是一个基于mvc构造的框架。但是在django中,控制器接受用户输入的部分 […]

Continue reading
Posted in Python · Leave a comment

python3.2中print函数用法实例详解

16 12月10 11月 by test4807991

本文实例讲述了python3.2中print函数用法。分享给大家供大家参考。具体分析如下: 1. 输出字符串 […]

Continue reading
Posted in Python · Leave a comment

python用configobj读写配置文件的实现代码

16 12月01 1月 by test30307667

发现一个简单而又强大的读写配置文件的lib,http://www.voidspace.org.uk/pytho […]

Continue reading
Posted in 未分类 · Leave a comment

python中用于检查英文字母大写的isupper()方法

16 12月01 1月 by test30307667

isupper()方法检查字符串的所有基于大小写的字符(字母)是否是大写。 语法 以下是isupper()方法 […]

Continue reading
Posted in 未分类 · Leave a comment

如何评价python迁移到github?

16 12月01 1月 by test16134286

对于新项目而言 mercurial 是否已不再值得考虑?回复内容: 看着个:pep 0507 — […]

Continue reading
Posted in 未分类 · Leave a comment

python匹配中文的正则表达式

16 12月01 1月 by test16134286

正则表达式并不是python的一部分。正则表达式是用于处理字符串的强大工具,拥有自己独特的语法以及一个独立的处 […]

Continue reading
Posted in 未分类 · Leave a comment

在python的bottle框架中使用微信api的示例

16 12月01 1月 by test30307667

微信这个东西估计宅男没几个不熟悉的吧,微信经过这么两年多的发展终于向开放平台跨出了友好的一步。蛋疼的以为微信会 […]

Continue reading
Posted in 未分类 · Leave a comment

python学习笔记:字典的使用示例详解

16 12月01 1月 by test16134286

经典字典使用函数dict:通过其他映射(比如其他字典)或者(键,值)这样的序列对建立字典。当然dict成为函数 […]

Continue reading
Posted in 未分类 · Leave a comment

python中mysql数据迁移到mongodb脚本的方法

16 12月01 1月 by test16134286

mongodb简介 mongodb 是一个基于分布式文件存储的数据库。由 c++ 语言编写。旨在为 web 应 […]

Continue reading
Posted in 未分类 · Leave a comment

python装饰器基础详解

16 12月01 1月 by test16134286

装饰器(decorator)是一种高级python语法。装饰器可以对一个函数、方法或者类进行加工。在pytho […]

Continue reading
Posted in 未分类 · Leave a comment

python实现将pvr格式转换成pvr.ccz的方法

16 12月10 11月 by test4807991

本文实例讲述了python实现将pvr格式转换成pvr.ccz的方法。分享给大家供大家参考。具体实现方法如下: […]

Continue reading
Posted in Python · Leave a comment

windows用户如何运行一个github上的python脚本?

15 12月01 1月 by test16134286

不知道是否描述清楚了… 对于一个丝毫没有接触过编程的小白用户,应该怎么运行这样一个脚本呢?回复内容 […]

Continue reading
Posted in 未分类 · Leave a comment

python语言实现机器学习的k

15 12月01 1月 by test30307667

写在前面 额、、、最近开始学习机器学习嘛,网上找到一本关于机器学习的书籍,名字叫做《机器学习实战》。很巧的是, […]

Continue reading
Posted in 未分类 · Leave a comment

在python中操作时间之mktime()方法的使用教程

15 12月01 1月 by test30307667

mktime()方法是localtime()反函数。它的参数是struct_time或全9元组,它返回一个浮点 […]

Continue reading
Posted in 未分类 · Leave a comment

介绍python中的fabs()方法的使用

15 12月10 11月 by test4807991

方法fabs()返回 x 的绝对值。 语法 以下是fabs()方法的语法: import math math. […]

Continue reading
Posted in Python · Leave a comment

python中用于计算对数的log()方法

15 12月10 11月 by test4807991

log()方法返回x的自然对数,对于x>0。 语法 以下是log()方法的语法: import math ma […]

Continue reading
Posted in Python · Leave a comment

python标准库内置函数complex介绍

15 12月01 1月 by test30307667

本函数可以使用参数real + imag*j方式创建一个复数。也可以转换一个字符串的数字为复数;或者转换一个数 […]

Continue reading
Posted in 未分类 · Leave a comment

python使用beautifulsoup分页网页中超链接的方法

15 12月01 1月 by test30307667

本文实例讲述了python使用beautifulsoup分页网页中超链接的方法。分享给大家供大家参考。具体如下 […]

Continue reading
Posted in 未分类 · Leave a comment

python远程桌面协议rdpy安装使用介绍

15 12月01 1月 by test30307667

rdpy 是基于 twisted python 实现的微软 rdp 远程桌面协议。 rdpy 提供了如下 rd […]

Continue reading
Posted in 未分类 · Leave a comment

python程序中用csv模块来操作csv文件的基本使用教程

14 12月01 1月 by test16134286

csv全称为“comma separated values”,是一种格式化的文件,由行和列组成,分隔符可以根据 […]

Continue reading
Posted in 未分类 · Leave a comment

python实现约瑟夫环问题的方法

14 12月01 1月 by test16134286

本文实例讲述了python实现约瑟夫环问题的方法。分享给大家供大家参考,具体如下: 题目:0,1,&#8230 […]

Continue reading
Posted in 未分类 · Leave a comment

python服务器与android客户端socket通信实例

14 12月01 1月 by test30307667

本文实例讲述了python服务器与android客户端socket通信的方法。分享给大家供大家参考。具体实现方 […]

Continue reading
Posted in 未分类 · Leave a comment

为什么现在新出的互联网站点大多采用python或者ruby?

14 12月01 1月 by test16134286

是考虑到成本问题?开发速度问题?还是以后的可扩展性问题?回复内容: 我不知道多大比例的新网站是用python或 […]

Continue reading
Posted in 未分类 · Leave a comment

python利用正则表达式匹配并截取指定子串及去重的方法

14 12月10 11月 by test4807991

本文实例讲述了python利用正则表达式匹配并截取指定子串及去重的方法。分享给大家供大家参考。具体如下: im […]

Continue reading
Posted in Python · Leave a comment

python实现socket端口重定向示例

14 12月01 1月 by test16134286

可以很轻松的在端口12345开启共享,效果如下:

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