02 2021 档案
摘要:os.path.abspath(os.path.dirname(__file__)))
阅读全文
摘要:引用:https://blog.csdn.net/u012119316/article/details/89671681
阅读全文
摘要:def find(dir, name): # print(dir) for i in [x for x in os.listdir(dir) if os.path.isfile(os.path.join(dir, x)) and name in os.path.splitext(x)[0]]: pr
阅读全文
摘要:path = "E:\\收藏夹\\C41\\C41" for filewalks in os.walk(path): pass # 生成器的输出为返回的是一个三元组(root, dirs, files),root表示当前目录,dir为当前root目录下的文件夹,files为当前root目录下的文件
阅读全文
摘要:引用:https://blog.csdn.net/lxh_worldpeace/article/details/106129132
阅读全文
摘要:1.再vs code中安装插件 rest client 2.然后再vs code中创建一个 .rest文件,如下图所示 3.点击Send Request,出现如下结果 注意:再做接口测试,传递参数得时候,前面需要空一行,否则会出现如下报错。 Header name must be a valid H
阅读全文
摘要:引用:https://blog.csdn.net/lxh_worldpeace/article/details/106129132
阅读全文