在家加1個月學了8day的課 出差6天看了8day的課..說明再忙也是可以擠擠多學習的.
廣州出差最後兩天沒學習.一天做車,一天做公司的事...4天就過去了.
老師講的包子和雞蛋需求不好...講的有點繞.
deftest():
yield
'早上吃早飯
'yield
'中午幹農活
'yield
'晚上打麻將
'g=test()
print(g.__next__
())print('
做些其他事1')
print(g.__next__
())print('
做些其他事2')
print(g.__next__
())print('
做些其他事3
')
上面這個例子好理解
importtime
defconsumer(name):
print('
我是[%s],我準備開始吃包子了
' %name)
while
true:
baozi=yield
time.sleep(1)
print('
%s 很開心的把【%s】吃掉了
' %(name,baozi))
defproducer():
c1=consumer('
wupeiqi')
c2=consumer('
yuanhao_sb')
c1.__next__
() c2.
__next__
()
for i in range(10):
time.sleep(1)
c1.send(
'包子 %s
' %i)
c2.send(
'包子 %s
' %i)
producer()
send()用法.做記錄了,不然想到辦法不知道函式.
學到了林海峰,武沛齊講的Day17完 6 檔案操作
參考 f open 陳粒1 encoding utf 8 open data f.read read print data f.close close readable 是否可讀 readline 讀一行 readlines 讀全部,成乙個列表.和read不一樣 f open 陳粒 w encodi...
Python概念 Item系列 林海峰教的
這個item系列是egon老師自創的,個人還是可以接受這種文化底蘊的,所以直接拿來用,也是毫無違和感的 所謂attr系列,其實是 setattr delattr getattr 三個函式,從名字中可以看出來這是一套設定,刪除,查詢的函式,那我們來乙個乙個的看 setitem self,key,val...
學到了武沛齊講的Day13完 轉義字元
字典 values 值 keys 鍵 items 逐條列出 下一day 轉義字元 描述 在行尾時 續行符 反斜槓符號 單引號 雙引號 a 響鈴 b 退格 backspace e 轉義 000 空 n 換行 v 縱向製表符 t 橫向製表符 r 回車 f 換頁 oyy 八進位制數yy代表的字元,例如 o...