Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

作者:test31297505

python2.7基础教程之:概要介绍

20 6月01 1月 by test31297505

.. _tut-informal: ************************************* […]

Continue reading
Posted in 未分类 · Leave a comment

python2.7基础教程之:模块

20 6月01 1月 by test31297505

.. _tut-modules: ************************ modules 模块 ** […]

Continue reading
Posted in 未分类 · Leave a comment

pythongdal教程之:地图代数与栅格数据的写入

20 6月01 1月 by test31297505

以计算ndvi为例: ndvi=(nir-red)/(nir+red) 其中nir为波段3,red为波段2 编 […]

Continue reading
Posted in 未分类 · Leave a comment

pythongdal教程之:用gdal读取栅格数据

20 6月01 1月 by test31297505

gdal原生支持超过100种栅格数据类型,涵盖所有主流gis与rs数据格式,包括 arcinfo grids, […]

Continue reading
Posted in 未分类 · Leave a comment

pythongdal教程之:过滤器,简单的空间分析,函数和模块

20 6月01 1月 by test31297505

layer对象有一个方法叫setattributefilter()可以将layer中符合某一条件的featur […]

Continue reading
Posted in 未分类 · Leave a comment

pythongdal教程之:几何形状geometry与投影projection

20 6月01 1月 by test31297505

建立空的geometry对象:ogr.geometry 定义各种不同的geometry使用的方法是不一样的(p […]

Continue reading
Posted in 未分类 · Leave a comment

pythongdal教程之:用ogr读写矢量数据

20 6月01 1月 by test31297505

为什么用open source? 优点 1. 免费,适合个人和小公司 2. 强大的开发工具,找bug更容易 3 […]

Continue reading
Posted in 未分类 · Leave a comment

【python教程】python2.x与3​​.x版本区别

20 6月01 1月 by test31297505

python2.x与3.x版本区别 python的3.0版本,常被称为python 3000,或简称py3k。 […]

Continue reading
Posted in 未分类 · Leave a comment

【python教程】pythongui编程(tkinter)

20 6月01 1月 by test31297505

python gui编程(tkinter) python提供了多个图形开发界面的库,几个常用python gu […]

Continue reading
Posted in 未分类 · Leave a comment

【python教程】pythonide

20 6月01 1月 by test31297505

python ide 本文为大家推荐几款款不错的python ide(集成开发环境),比较推荐 pycharm […]

Continue reading
Posted in 未分类 · Leave a comment

【python教程】pythonjson

20 6月01 1月 by test31297505

python json 本章节我们将为大家介绍如何使用 python 语言来编码和解码 json 对象。 环境 […]

Continue reading
Posted in 未分类 · Leave a comment

python

20 6月01 1月 by test31297505

#!/usr/bin/python# -*- coding:utf-8 -*-#建造者基类class pers […]

Continue reading
Posted in 未分类 · Leave a comment

python描述符descriptor(二)

20 6月01 1月 by test31297505

python内置的描述符 python有些内置的描述符对象,property、staticmethod、cla […]

Continue reading
Posted in 未分类 · Leave a comment

python中cookie的处理(二)cookielib库

20 6月01 1月 by test31297505

python中cookielib库(python3中为http.cookiejar)为存储和管理cookie提 […]

Continue reading
Posted in 未分类 · Leave a comment

python中cookie的处理(一)cookie库

20 6月01 1月 by test31297505

cookie用于服务器实现会话,用户登录及相关功能时进行状态管理。要在用户浏览器上安装cookie,http服 […]

Continue reading
Posted in 未分类 · Leave a comment

第五章python数字

20 6月01 1月 by test31297505

5.1 数字类型  数字提供了标量贮存和直接访问。它是不可更改类型,也就是说变更数字的值会生成新的对象。当然, […]

Continue reading
Posted in 未分类 · Leave a comment

第四章python对象

20 6月01 1月 by test31297505

4.1 python 对象   所有的python 对像都拥有三个特性:身份,类型和值。身份:每一个对象都有一 […]

Continue reading
Posted in 未分类 · Leave a comment

第三章python基础

20 6月01 1月 by test31297505

  花了一个星期多看了 《learn python the hard way》,只能说掌握了皮毛的皮毛,今天开 […]

Continue reading
Posted in 未分类 · Leave a comment

第二章python数据类型

20 6月01 1月 by test31297505

第一节 数字和字符串类型 123和“123”一样吗 () [] {} 计算机是用来辅助人们的,在程序设计中也映 […]

Continue reading
Posted in 未分类 · Leave a comment

飘逸的python

20 6月01 1月 by test31297505

首先我们来看一下字符串的朴素匹配. 可以想象成把文本串s固定住,模式串p从s最左边开始对齐,如果对齐的部分完全 […]

Continue reading
Posted in 未分类 · Leave a comment

python快速教程(补充篇05):字符串格式化(%操作符)

20 6月01 1月 by test31297505

在许多编程语言中都包含有格式化字符串的功能,比如c和fortran语言中的格式化输入输出。python中内置有 […]

Continue reading
Posted in 未分类 · Leave a comment

python快速教程(补充篇03):python内置函数清单

20 6月01 1月 by test31297505

python内置(built-in)函数随着python解释器的运行而创建。在python的程序中,你可以随时 […]

Continue reading
Posted in 未分类 · Leave a comment

python快速教程(补充篇02):python小技巧

20 6月01 1月 by test31297505

import模块 在python经常使用import声明,以使用其他模块(也就是其它.py文件)中定义的对象。 […]

Continue reading
Posted in 未分类 · Leave a comment

python显示当前时间

20 6月01 1月 by test31297505

import time time.strftime(“%y%m%d %x”, time […]

Continue reading
Posted in 未分类 · Leave a comment

《python基础教程》笔记之抽象

20 6月01 1月 by test31297505

创建函数 记录函数,在函数的开头写下字符串,它就会作为函数的一部分进行存储,这称为文档字符串,如 def sq […]

Continue reading
Posted in 未分类 · Leave a comment

《python基础教程》笔记之其它语句1

20 6月01 1月 by test31297505

print 相关 print可以打印多个表达式,只要将它们用逗号隔开就好,结果中每个参数之间都会插入一个空格, […]

Continue reading
Posted in 未分类 · Leave a comment

pythontipsandtraps(二)

20 6月01 1月 by test31297505

6、collections 模块还提供有ordereddict,用于获取有序字典 import collect […]

Continue reading
Posted in 未分类 · Leave a comment

pythontipsandtraps(一)

20 6月01 1月 by test31297505

1、如果想得到一个列表的index和内容,可以通过enumerate快速实现 drinks = [&#8216 […]

Continue reading
Posted in 未分类 · Leave a comment

怒学python——第四篇——函数与模块

20 6月01 1月 by test31297505

python的函数:其实和c++非常类似,不过由于是弱类型的语言(用起来感觉是……), […]

Continue reading
Posted in 未分类 · Leave a comment

怒学python——第二篇——类型与运算

20 6月01 1月 by test31297505

python支持5种数据类型,包括数字(numbers)、字符串(string)、列表(list)、元组(tu […]

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