05 2018 档案

摘要:1)设置通讯组 2)编写发送指令 3)编写接收指令 动态发送指令案例 阅读全文
posted @ 2018-05-20 22:36 ywyin 编辑
该文被密码保护。
posted @ 2018-05-20 22:26 ywyin 编辑
摘要:1) 面向对象的介绍 2) 特性 (封装,继承,多态) 3) 语法(语法、方法、构造函数、析构函数) 析构函数:在实例释放、销毁的时候执行的,通常是一些守卫工作,关闭等等 def __del__(self) 4) 私有方法、私有属性 ##加两个__ 5) 类变量、实例变量 继承 #py2, 经典类按 阅读全文
posted @ 2018-05-11 19:52 ywyin 阅读(88) 评论(0) 推荐(0) 编辑
摘要:1.定义 - 模块:用来从逻辑上组织py的代码,如变量、函数、类、逻辑),本质就是py结尾的python文件(文件名test.py,模块名就是test) - 包:用来从逻辑上组织模块的,本质就是一个目录,必须带有一个__init__.py文件 2. 导入方法 - import module_name 阅读全文
posted @ 2018-05-10 09:04 ywyin 阅读(358) 评论(0) 推荐(0) 编辑
摘要:##### Author:yyw, created on 20180509 ##### ''' 0. Define functions - prt_all_prod(prod_dict) - get_price_by_index(prod_dict, _index) - get_sku_by_ind 阅读全文
posted @ 2018-05-09 20:53 ywyin 编辑
摘要:把内存的数据变成字符串 import json import pickle import json import pickle def sayhi(name): print ("hello!",name) info1 ={ 'name':'Lucas', 'age':10, #"func":sayh 阅读全文
posted @ 2018-05-08 22:24 ywyin 阅读(98) 评论(0) 推荐(0) 编辑
摘要:https://codewith.mu/#download http://www.micropython.org.cn/bbs/forum.php?mod=viewthread&tid=1016&extra=page%3D1 https://mu.readthedocs.io/en/latest/i 阅读全文
posted @ 2018-05-08 18:08 ywyin 编辑
摘要:通过列表生成式,我们可以直接创建一个列表。但是,受到内存限制,列表容量肯定是有限的。而且,创建一个包含100万个元素的列表,不仅占用很大的存储空间,如果我们仅仅需要访问前面几个元素,那后面绝大多数元素占用的空间都白白浪费了。 所以,如果列表元素可以按照某种算法推算出来,那我们是否可以在循环的过程中不 阅读全文
posted @ 2018-05-07 09:44 ywyin 编辑
摘要:#装饰器本质是函数,用来装饰其他函数,也就是为其他函数添加附加功能 1)不能修改被装饰的函数的源码 2)不能修改被装饰的函数的调用方式 3)高阶函数+嵌套函数 =》装饰器 #高阶函数在定义 1)把一个函数名当作实参传给另外一个函数(不修改被装饰函数源代码的情况下为其添加功能) 2)返回值中包括函数名 阅读全文
posted @ 2018-05-06 17:46 ywyin 阅读(156) 评论(0) 推荐(0) 编辑
摘要:python http://www.cnblogs.com/alex3714/p/7966656.html http://www.cnblogs.com/alex3714/articles/5885096.html 阅读全文
posted @ 2018-05-06 11:48 ywyin 编辑
摘要:#函数在内部调用自己就是递归函数 #必须要有明确的结束条件 #程序保护机制调用递归999次 #问题规模要比第一次传递进去少 #调试递归最好的方法用断点 阅读全文
posted @ 2018-05-06 11:29 ywyin 编辑
摘要:egon09.blog.51cto.com/9161406/1834777 函数式编程 def -- 逻辑结构化和过程化的一种方法 def _funcname(x) ###函数描述 x +=1 return x ##过程没有返回值的函数,在py中返回None,也可以当作函数看 ##单个值,就是返回该 阅读全文
posted @ 2018-05-05 22:31 ywyin 编辑
摘要:'''-a append ,但是不能读-r read only-w write 会覆盖创建''' #data = open("bigger",encoding="UTF-8").read()f = open("bigger",'a',encoding="UTF-8") #文件句柄,就是文件的内存对象data = f.read()data2 = f.read() #这个时候的赋值已经读到文件... 阅读全文
posted @ 2018-05-05 10:41 ywyin 编辑
摘要:1)去重 2)关系测试 list_1 =[1,4,3,7,5,7,9] list_1 = set(list_1) print(list_1,type(list_1)) list_2 = set([22,55,0,9,7,22]) print(list_1,list_2) print(list_1.i 阅读全文
posted @ 2018-05-04 20:20 ywyin 编辑
摘要:http://www.runoob.com/python/python-while-loop.html https://docs.python.org/3/whatsnew/3.6.html 阅读全文
posted @ 2018-05-04 13:14 ywyin 阅读(90) 评论(0) 推荐(0) 编辑
摘要:#define product listproduct_list = [ ('Python book',45), ('iphone',5800), ('iwatch', 1500), ("bike",850), ("luckiin coffee",25)]_shop =[]#input custom 阅读全文
posted @ 2018-05-04 11:06 ywyin 编辑
摘要:name = 'His name is Louie' print(name.captitalize()) #首字母大写 print(name.count("i")) #i的数量 print(name.ceter(50,“-”) # 打印50个- print(name.endswith("ie") # 阅读全文
posted @ 2018-05-03 23:18 ywyin 编辑
摘要:字典 # key-value type info = { ‘stu1101’: "Teng", 'stu1102': "Long", } print(info) # dict是无序的,key必须唯一,天生去重 print(info["stu1101"]) #查询 print(info.get("st 阅读全文
posted @ 2018-05-03 22:01 ywyin 阅读(145) 评论(0) 推荐(0) 编辑
摘要:1)三元运算 a,b,c = 2,3,4 d = a if a>b else c 2)进制 二进制,01 八进制,01234567 十进制,0123456789 十六进制,0123456789ABCDEF 二进制到16进制转换 http://jingyan.baidu.com/album/47a29 阅读全文
posted @ 2018-05-03 17:36 ywyin 阅读(91) 评论(0) 推荐(0) 编辑
摘要:type() 1)Number int long float complex 2)String(字符串) str()取值函数 3)List(列表) List =['apple', 'alligator', 'gibbon', 'salamander'] / print (list[2:]) 4)Tu 阅读全文
posted @ 2018-05-03 14:30 ywyin 编辑
摘要:get_pass 导入标准库,ilb目录下 三方库需要安装才能使用,一般安装在site package Sample .py文件都可以作为外部文件导入, 1)copy 到lib/site-packages下面作为默认路径 2)但是要有绝对路径,修改环境变量 阅读全文
posted @ 2018-05-03 11:05 ywyin 编辑
摘要:1)朋友推荐了vscode,最后还是安装了PYcharm professional 2018.2.1版本 2)B站上Python的教学视频看了15讲。。。https://www.bilibili.com/video/av17118368/?p=11 3)逻辑IF、While、For,注意:使用方法 阅读全文
posted @ 2018-05-02 21:23 ywyin 编辑