摘要:
https://wenku.baidu.com/view/90365c5d54270722192e453610661ed9ad51552c.html 阅读全文
摘要:
焊接贴片 1.先把一边点上锡 2.拿镊子方式 3.焊好一边 另外一边 电阻边缘 与 锡线 、焊笔刀口平行 4. 轻轻触碰 焊接完成 电阻翘起太多 用焊笔刀口 贴在电阻宽的那一侧 融化下面的锡 阅读全文
摘要:
阅读全文
摘要:
def fib(num): n=0 a,b=0,1 while n<num: print(b) yield a,b=b,a+b n=n+1a=fib(30)next(a)next(a) 阅读全文
摘要:
1.不同的比特数为码距 阅读全文
摘要:
迭代器例子li=[1,2,3,4]a=iter(li) #iter(li)将列表变成迭代器,迭代器赋值给aprint(next(a))print(next(a))print(next(a))print(next(a))print(next(a))生成器例子 def fun(): i=0 while 阅读全文
摘要:
https://www.cnblogs.com/shiqi17/p/9539580.html 阅读全文