Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

python采用raw

17 7月01 1月 by test16134286

本文较为详细的介绍了python中raw_input的用法,使用raw_input 能够很方便的丛控制台读入数 […]

Continue reading
Posted in 未分类 · Leave a comment

python中if

17 7月01 1月 by test4807991

当你打开一个.py文件时,经常会在代码的最下面看到if __name__ == ‘__main__ […]

Continue reading
Posted in 未分类 · Leave a comment

进一步了解python中的xml工具

17 7月01 1月 by test30307667

模块:xmllib xmllib 是一个非验证的低级语法分析器。应用程序员使用的 xmllib 可以覆盖 xm […]

Continue reading
Posted in 未分类 · Leave a comment

python中使用select模块实现非阻塞的io

17 7月01 1月 by test30307667

socket的英文原义是“孔”或“插座”。作为bsd unix的进程通信机制,取后一种意思。通常也称作”套接字 […]

Continue reading
Posted in 未分类 · Leave a comment

python简单程序读取串口信息的方法

17 7月01 1月 by test30307667

本文实例讲述了python简单程序读取串口信息的方法。分享给大家供大家参考。具体分析如下: 这段代码需要调用s […]

Continue reading
Posted in 未分类 · Leave a comment

python的fromimport和import的区别?

17 7月01 1月 by test16134286

我刚开始学习python,对于import和from import我觉得应该是有区别的,但是在网上搜了一圈,还 […]

Continue reading
Posted in 未分类 · Leave a comment

python模块搜索概念介绍及模块安装方法介绍

17 7月01 1月 by test4807991

【import模块】 和c中的#include不同,python中的import语句并不是简单的把一个文件插入 […]

Continue reading
Posted in 未分类 · Leave a comment

如何系统地学习python中matplotlib,numpy,scipy,pandas?

17 7月01 1月 by test16134286

最近在学习python绘制图形的相关知识,学习到了这几个库,所以想请教一下各位知友。希望用python来做数据 […]

Continue reading
Posted in 未分类 · Leave a comment

想扩展知识,学一门新语言,该学python、ruby,还是c++?

17 7月01 1月 by test16134286

过年想新学门语言 哪个比较适合?有php和c#经验回复内容: 那么多python?!我推荐ruby吧,百花齐放 […]

Continue reading
Posted in 未分类 · Leave a comment

python实现把数字转换成中文

16 7月01 1月 by test4807991

周末在家,写了个小程序,用于将阿拉伯数字转换化大写中文。程序没经过任何优化,出没经过详细的测试,挂到网上,方便 […]

Continue reading
Posted in 未分类 · Leave a comment

在python的django框架中编写错误提示页面

16 7月01 1月 by test4807991

你应该在生产环境中把template_debugfalse 如果这个设为“ true“ […]

Continue reading
Posted in 未分类 · Leave a comment

python中metaclasses详解

16 7月01 1月 by test4807991

接触过 django 的同学都应该十分熟悉它的 orm 系统。对于 python 新手而言,这是一项几乎可以被 […]

Continue reading
Posted in 未分类 · Leave a comment

设计模式中的原型模式在python程序中的应用示例

16 7月01 1月 by test16134286

原型模式: 原型实例指定创建对象的种类,并且通过拷贝这些原型创建新的对象。 原型模式本质就是克隆对象,所以在对 […]

Continue reading
Posted in 未分类 · Leave a comment

python批量同步web服务器代码核心程序

16 7月01 1月 by test16134286

#!/usr/bin/env python #coding:utf8 import os,sys import […]

Continue reading
Posted in 未分类 · Leave a comment

python通过线程实现定时器timer的方法

16 7月01 1月 by test30307667

本文实例讲述了python通过线程实现定时器timer的方法。分享给大家供大家参考。具体分析如下: 这个pyt […]

Continue reading
Posted in 未分类 · Leave a comment

python下载文件时显示下载进度的方法

16 7月01 1月 by test30307667

本文实例讲述了python下载文件时显示下载进度的方法。分享给大家供大家参考。具体分析如下: 将这段代码放入你 […]

Continue reading
Posted in 未分类 · Leave a comment

python链接oracle数据库的方法

16 7月01 1月 by test4807991

本文实例讲述了python链接oracle数据库的方法。分享给大家供大家参考。具体如下: 这里使用python […]

Continue reading
Posted in 未分类 · Leave a comment

整理python最基本的操作字典的方法

16 7月01 1月 by test4807991

python 中的字典是python中一个键值映射的数据结构,下面介绍一下如何优雅的操作字典. 1.1 创建字 […]

Continue reading
Posted in 未分类 · Leave a comment

python中字符串的格式化方法小结

16 7月01 1月 by test16134286

老办法 python2.6之前,格式字符串的使用方法相对更简单些,虽然其能够接收的参数数量有限制。这些方法在p […]

Continue reading
Posted in 未分类 · Leave a comment

macosx10.9安装的python2.7升级python3.3步骤详解

15 7月01 1月 by test30307667

第1步:官网下载python3.3 这里面有windows和mac os x下的安装程序,下载那个64位的安装 […]

Continue reading
Posted in 未分类 · Leave a comment

python使用pygresql操作postgresql数据库教程

15 7月01 1月 by test16134286

postgresql是一款功能强大的开源关系型数据库,本文使用python实现了对开源数据库postgresq […]

Continue reading
Posted in 未分类 · Leave a comment

在python的django框架的视图中使用session的方法

15 7月01 1月 by test4807991

sessionmiddleware 激活后,每个传给视图(view)函数的第一个参数“httpre […]

Continue reading
Posted in 未分类 · Leave a comment

python使用py2exe打包程序介绍

15 7月01 1月 by test30307667

一、简介 py2exe是一个将python脚本转换成windows上的可独立执行的可执行程序(*.exe)的工 […]

Continue reading
Posted in 未分类 · Leave a comment

python的django框架中settings文件的部署建议

15 7月01 1月 by test4807991

django在一个项目的目录结构划分方面缺乏必要的规范,因此不同人的项目组织形式也千奇百怪,而且也很难说谁的做 […]

Continue reading
Posted in 未分类 · Leave a comment

在python中使用dict和set方法的教程

15 7月01 1月 by test4807991

dict python内置了字典:dict的支持,dict全称dictionary,在其他语言中也称为map, […]

Continue reading
Posted in 未分类 · Leave a comment

python调用dll操作抄表机

15 7月01 1月 by test30307667

# -*- coding: gbk -*- from ctypes import * dll = windll […]

Continue reading
Posted in 未分类 · Leave a comment

python和c++如何选择?

15 7月01 1月 by test16134286

大三狗,想要大四找到一线城市工作,主要方向是linux下编程,有linux c编程经验,最近一直在纠结是学c+ […]

Continue reading
Posted in 未分类 · Leave a comment

python操作日期和时间的方法

15 7月01 1月 by test16134286

不管何时何地,只要我们编程时遇到了跟时间有关的问题,都要想到 datetime 和 time 标准库模块,今天 […]

Continue reading
Posted in 未分类 · Leave a comment

python中处理时间的几种方法小结

15 7月01 1月 by test30307667

从一个字符串开始 在code上查看代码片派生到我的代码片 >>>time_str=’2008-08 […]

Continue reading
Posted in 未分类 · Leave a comment

一本大学,退学自学python自主创业?

15 7月01 1月 by test16134286

一本大学,全国五十名左右,数学专业(调配),已经降了一级,专业内容实在没兴趣也跟不上。有美术设计基础,编程基础 […]

Continue reading
Posted in 未分类 · Leave a comment

文章导航

Previous 1 … 123 124 125 126 127 128 129 130 131 132 133 … 260 Next

近期文章

  • 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笔记 ·
程序猿 散文朗诵 鬼故事 佛学网