摘要: #导入shutil模块和os模块 import shutil,os #复制单个文件 shutil.copy("C://a//1.txt","C://b") #复制并重命名新文件 shutil.copy("C://a//2.txt","C://b//121.txt") #复制整个目录(备份) shut 阅读全文
posted @ 2019-02-18 17:10 丹心静居 阅读(3728) 评论(0) 推荐(0) 编辑
摘要: fileHandle = open ( 'G:/qqfile/1.txt','w' )fileHandle.write('abcd')#写文件 地址要用反斜杠fileHandle.close()fileHandle = open ( 'G:/qqfile/1.txt' )print (fileHan 阅读全文
posted @ 2019-02-18 16:42 丹心静居 阅读(148) 评论(0) 推荐(0) 编辑
摘要: import osimport os.pathrootdir = r"C:\Users\leiyi\Desktop\1" # 指明被遍历的文件夹#要加上r,否则会报错(unicode error) 'unicodeescape' codec can't decode bytes in positio 阅读全文
posted @ 2019-02-18 16:20 丹心静居 阅读(1386) 评论(0) 推荐(0) 编辑
摘要: https://wenku.baidu.com/view/90365c5d54270722192e453610661ed9ad51552c.html 阅读全文
posted @ 2019-02-17 23:59 丹心静居 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 焊接贴片 1.先把一边点上锡 2.拿镊子方式 3.焊好一边 另外一边 电阻边缘 与 锡线 、焊笔刀口平行 4. 轻轻触碰 焊接完成 电阻翘起太多 用焊笔刀口 贴在电阻宽的那一侧 融化下面的锡 阅读全文
posted @ 2019-02-17 20:38 丹心静居 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-02-17 20:36 丹心静居 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 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) 阅读全文
posted @ 2019-02-17 20:10 丹心静居 阅读(475) 评论(0) 推荐(0) 编辑
摘要: 1.不同的比特数为码距 阅读全文
posted @ 2019-02-17 19:55 丹心静居 阅读(8315) 评论(0) 推荐(3) 编辑
摘要: 迭代器例子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 阅读全文
posted @ 2019-02-17 16:29 丹心静居 阅读(283) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/shiqi17/p/9539580.html 阅读全文
posted @ 2019-02-17 14:13 丹心静居 阅读(86) 评论(0) 推荐(0) 编辑