最新 最热

精心整理python和自动化测试的小技巧:第四节

f=open(“aaa.txt”,’r’)f.seek(x,0) x代表偏移量 0代表文件开头算起,1代表当前位置算起,2代表结尾算起f.tell() 显示当前光标的位置 再之后执行readline()的话,会从光标处开始...

2022-05-18
0

精心整理python和自动化测试的小技巧:第五节

1:字典的查找默认函数:dict.setdefault(“键”,值) 如果找不到此键就返回后面的值

2022-05-18
1

python 获取文件md5值脚本

import hashlib import os def md5(file_path): if os.path.isdir(file_path): return '1' read_file = open(file_path,'r') the_hash = hashlib.md5() for line in...

2022-05-14
1

python 给图片打LOGO 脚本

SQUARE_FIT_SIZE = 300 LOGO_FILENAME = 'catlogo.png'

2022-05-13
1

python 压缩文件夹 脚本

def backupToZip(folder): # Backup the entire contents of "folder" into a zip file.

2022-05-13
1

python 查找多个目录下的最大Python文件 脚本

""" Find the largest Python source file on the module import search path. Skip already-visited directories, normalize path and case so they will match proper...

2022-05-13
1

python tkinter pil 缩略图 脚本

""" display all images in a directory as thumbnail image buttons that display the full image when clicked; requires PIL for JPEGs and thumbnail image creatio...

2022-05-13
1

python 动态GUI表单生成器 脚本***

""" ################################################################## a reusable form class, used by getfilegui (and others) ###############################...

2022-05-13
1

python excel 截图 脚本

from win32com.client import Dispatch, DispatchEx import pythoncom from PIL import ImageGrab, Image import uuid

2022-05-13
1

Vue篇(012)-在compositionAPI中如何使用生命周期函数?

需要用到哪个生命周期函数,就将对应函数的import进来,接着在setup中调用即可

2022-05-12
1