
Python
R_zz
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
windows 64位安装Python以及PIL模块详细步骤
http://blog.youkuaiyun.com/sinat_25704999/article/details/49976137原创 2016-09-07 16:06:18 · 470 阅读 · 0 评论 -
Python学习笔记
(因原博客被迫退出,现转到新博客。)一.Python变量及数据类型1.字符串是以’ ’或” ”括起来的文本。2.注释: #。3.变量名必须是大小写英文,数字和下划线_,但数字不能是开头。4.Python是动态语言,可以将任意数据类型赋值给变量。5.在计算a and b时,如果a是False,则返回a;如果a是True,则整个结果取决于b,返回b。原创 2016-12-04 20:18:01 · 278 阅读 · 0 评论 -
python IOError: cannot identify image file
(因原博客被迫退出,先搬到新博客。)Python 做图像处理,输出一副图片的大小。代码如下:import Imageim=Image.open('D:\\pythonword\\tt.jpg')print im.size123123运行报错:IOError: cannot identify image file ‘D:\pythonword\tt.jpg’ 逐步分原创 2016-12-04 20:15:59 · 6082 阅读 · 0 评论