Python语法
hn_lgc
这个作者很懒,什么都没留下…
展开
-
Python图片处理PIL简介
详见官方文档:http://effbot.org/imagingbook/ 基础: 支持的格式: Mode # The mode of an image defines the type and depth of a pixel in the image. The current release supports the following standard modes: 1 (1-bit pixels, black and white, stored with one pixel per byte) L原创 2020-09-04 23:56:05 · 387 阅读 · 0 评论 -
廖雪峰Python学习笔记三-面向对象
使用面向对象的由来和哲学原理不用说了,各语言中面向对象的基本的机制和实现差不多,主要是Python和Java中的差异 1、创建 比如: class Student: pass Student xm xm.name = 'xiaoming' Python中的对象属性不用预先声明,可以再运行过程中自由的创建并赋值。 2、私有成员 成员包括变量和方法,Python中没有表...原创 2019-11-24 16:58:29 · 271 阅读 · 0 评论 -
廖雪峰Python教程学习六-模块、常用内建模块
正则式 正则式在各个语言下的实现应该是基本相同,Python和Java遵守的规则以及API用法差别都不大。Python的在re模块下,可以使用re.match(regex, pattern)直接进行一次匹配 或者像Java一样使用 matcher = re.compile(r'[regex]') mathcer.match('pattern') 先编译再匹配,可以进行多次 Pyth...原创 2019-11-24 16:52:29 · 159 阅读 · 0 评论