上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 44 下一页
摘要: 生产者消费者模式 import time def consumer(name): print("%s 准备吃包子啦!" %name) while True: baozi = yield print("包子[%s]来了,被[%s]吃了!" %(baozi,name)) def producer(nam 阅读全文
posted @ 2021-04-22 09:03 ty1539 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 优先级排序(具体的我也不太懂) def sort_priority(values,group): def helper(x): if x in group: print('在group',0,x) return (0,x) # print(values) print('不在group',1,x) r 阅读全文
posted @ 2021-04-21 14:21 ty1539 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 测试1: age = 19 def func1(): age = 73 def func2(): nonlocal age # global age # age = 11 print('func2 内',age) func2() print('func1 内',age) func1() print( 阅读全文
posted @ 2021-04-21 11:45 ty1539 阅读(45) 评论(0) 推荐(0) 编辑
摘要: init()函数和main()函数 1.这两个函数都是go语言中的保留函数。init()用于初始化信息,main()用于作为程序的入口 2.这两个函数定义的时候:不能有参数,返回值。只能由go程序白动调用,不能被引用。 3.init()函数可以定义在任意的包中,可以有多个。main()函数只能在ma 阅读全文
posted @ 2021-04-20 15:39 ty1539 阅读(532) 评论(0) 推荐(0) 编辑
摘要: level = 'L0' n = 22 def func(): level = 'L1' n = 33 s =88 print(locals()) def outer(): n = 44 level = 'L2' print(locals(),n) def inner(): level = 'L3' 阅读全文
posted @ 2021-04-19 23:05 ty1539 阅读(45) 评论(0) 推荐(0) 编辑
摘要: def selfAdd(a): a += a a_int = 1 print('a_int1:',a_int) selfAdd(a_int) print('a_int2:',a_int) 输出结果: a_int1: 1 a_int2: 1 a_list =[1,2] print('a_list1:' 阅读全文
posted @ 2021-04-19 22:54 ty1539 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 2.1.调用glob 遍历指定目录下的所有文件和文件夹,不递归遍历,需要手动完成递归遍历功能。 import glob as gb path = gb.glob('W:\word2pdf\*') for path in path: print ('方法一path: ',path) print(' ' 阅读全文
posted @ 2021-04-19 22:34 ty1539 阅读(392) 评论(0) 推荐(0) 编辑
摘要: class S(): def go(self): print ("go s go!") def stop(self): print ("stop A stop!") class A(): def go(self): print ("go A go!") def stop(self): print ( 阅读全文
posted @ 2021-04-19 22:22 ty1539 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 购买东西 #_*_ encoding: utf-8 _*_ @author: ty hery 2018/12/29 product_list = [ ('Iphone',5000), ('book',10), ('watch',10600), ('bike',800), ] shopping_lis 阅读全文
posted @ 2021-04-19 14:29 ty1539 阅读(70) 评论(0) 推荐(0) 编辑
摘要: #_*_ encoding: utf-8 _*_ @author: ty hery 2019/8/28 class MySQL: def __init__(self,ip,port,id): self.id=id self.ip=ip self.port=port def tell_info(sel 阅读全文
posted @ 2021-04-19 09:29 ty1539 阅读(42) 评论(0) 推荐(0) 编辑
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 44 下一页