码迷,mamicode.com
首页 >  
搜索关键字:walk    ( 975个结果
遍历文件夹
import os def traverse_dir(path): for root, dirs, files in os.walk(path): for dir in dirs: dir_path = os.path.join(root, dir) print(dir_path) traverse ...
分类:其他好文   时间:2021-07-05 17:23:58    阅读次数:0
Simple Linear Interpolation Functions
##Lerp lerp is the acronym for linear interpolation.the idea is very simple , you have 2 values, and you want to "walk" between those values by a fact ...
分类:其他好文   时间:2021-06-02 20:55:50    阅读次数:0
python自动发布
import os import paramiko baseconfig = { "ip": "192.168.68.58", "port": 22, "username": "root", "password": "", "localdir": "E:/code/java/science-api/ ...
分类:编程语言   时间:2021-06-02 14:09:42    阅读次数:0
Python自动化操作
一、遍历文件夹代码如下,大家可以根据自己的路径进行修改import osfor dirpath, dirnames, filenames in os.walk(r'C:\\Program Files (x86)'):print(f'打开文件夹{dirpath}') # 当前文件夹路径 if dirn ...
分类:编程语言   时间:2021-05-24 02:56:20    阅读次数:0
php中给二维数组中所有一维数组添加字段值的方法
列子: [{"id":342},{"id":343},{"id":344}] 代码: $arr = ['reminders_status' => 1]; array_walk($isOverdue, function (&$value, $key, $arr) { $value = array_me ...
分类:编程语言   时间:2021-04-26 14:01:49    阅读次数:0
【事件类】雅思口语
【事件】 bike trip Describe an unforgettable bike trip you had You should say: When and where you had the trip Who you went with Why you had the trip by b ...
分类:其他好文   时间:2021-04-21 12:57:26    阅读次数:0
Python中os.walk函数的用法(遍历文件夹下文件并获得路径
Python中os.walk函数的用法(遍历文件夹下文件并获得路径) Python中os.walk函数的用法(遍历文件夹下文件并获得路径) 参考文献 引言 os.walk使用 获得所有子文件路径(os.path.join使用)参考文献https://blog.csdn.net/bagboy_taob ...
分类:编程语言   时间:2021-04-21 12:21:41    阅读次数:0
遍历文件夹,寻找匹配的内容,匹配对应的数据,及所在的文件
# @Filename: search_document.py import os,re import shutil import pandas as pd import time class atom_file(object): def re_doucement(self,path,pattern ...
分类:其他好文   时间:2021-04-06 14:59:44    阅读次数:0
在磁盘中找到关键字文件 并删除
# coding=utf-8import osn = 0for root, dir, files in os.walk('.'): for name in files: if ("final" not in name): n+=1 print(n,name) os.remove(os.path.jo ...
分类:其他好文   时间:2021-03-15 11:04:56    阅读次数:0
selenium_base_file
python\小脚本\selenium_base_file.py # -*- coding: utf-8 -*- """ Created on Wed Feb 28 19:40:07 2018 @author: zhoujunqing """ # -*- coding: utf-8 -*- """ ...
分类:其他好文   时间:2021-03-15 11:02:11    阅读次数:0
975条   1 2 3 4 ... 98 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!