python
阿比的博客
这个作者很懒,什么都没留下…
展开
-
Python3 Day1 安装
开始我的三分钟热度学习1.按网上教程下载了安装包,无脑凭版本号高低选择了python3, 双击安装,安装时顺便选上配置环境变量,忘记了就手动加吧,安装超级简单的! 2.然后就在cmd 输入 >> python,就可以开始你的‘hello world’表演了。 3.几个’hello world’之后就有点无聊了,查了下python 用什么IDE->pycharm 4.下载完就继续看文档了,毕竟c原创 2017-12-09 18:15:53 · 174 阅读 · 0 评论 -
Python3 循环
1.while 语句当一个条件为 真 的时候,一直执行一块语句到条件不为真为止,[else不为真时,执行另一块语句](可选)#一个有三次机会的猜字游戏 times=0 answer=10 condition=True while times<3 and condition: guess=int(input("Enter an integer:")) ...原创 2017-12-12 21:01:30 · 265 阅读 · 0 评论 -
Python opencv operations on images 图片操作
1.load imageimport cv2img = cv2.imread('messi5.jpg')2.access pixel values RGBpx = img[100,100] #2.1.通过坐标 获取 (100,100)的RGB pixel值为 (157,166,200)#r,g,b= cv2.split(img) #2.2.通过split 分离颜色通道原创 2018-01-08 20:43:54 · 293 阅读 · 0 评论 -
Python3 help(list)
class list(object) | list() -> new empty list | list(iterable) -> new list initialized from iterable’s items | | Methods defined here: | | __add__(self, value, /) | Return self+原创 2018-01-31 20:02:27 · 813 阅读 · 0 评论 -
Python3 help(dict)
class dict(object) | dict() -> new empty dictionary | dict(mapping) -> new dictionary initialized from a mapping object’s | (key, value) pairs | dict(iterable) -> new dictionary initia原创 2018-01-31 20:17:46 · 397 阅读 · 0 评论 -
Python3 help(tuple)
class tuple(object) | tuple() -> empty tuple | tuple(iterable) -> tuple initialized from iterable’s items | | If the argument is a tuple, the return value is the same object. | | Metho原创 2018-01-31 20:23:29 · 319 阅读 · 0 评论 -
Python3 help(set)
class set(object) | set() -> new empty set object | set(iterable) -> new set object | | Build an unordered collection of unique elements. | | Methods defined here: | | __and__(sel原创 2018-01-31 20:26:35 · 328 阅读 · 0 评论 -
Python3 数据结构:list,tuple,dict,set
Python中的四种数据结构:列表(list),元组(tuple),字典(dict),集合(set)(可以点击蓝色数据结构名称跳转的相对应的help()详细页面)1.列表 list1.1. 可变的,有序的。可以进行增,删,查,改的操作myList = ['pen','notebook','eraser']print('myList has ',len(myList),' 个原创 2018-01-31 19:47:22 · 295 阅读 · 0 评论