自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(31)
  • 收藏
  • 关注

原创 安装gitlab

ruby -e “$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)”brew install gitbrew install gitlab/gitlab-ee/gitlab-eesudo gitlab-config fullsudo gitlab-ctl reconfiguresudo gitlab-ctl starthttp://localhost:8080sudo gitlab-ctl status

2023-10-07 16:59:23 60 1

原创 python时间2

x = None。

2023-07-03 11:28:47 80

原创 Python时间

def a():# 在这里编写要执行的逻辑print(“调用函数 a()”)

2023-07-03 11:27:27 73

原创 python的

【代码】python的。

2023-06-30 19:00:51 55

原创 python.os

import os。

2023-06-30 18:56:26 48

原创 接Python

2023-06-30 18:50:53 46

原创 python

打开 acc_sensor。

2023-06-30 18:47:28 48

原创 python

current_path = os.path.abspath(file)parent_path = os.path.dirname(os.path.dirname(current_path))sys.path.append(parent_path)

2023-06-21 18:50:09 50

原创 python

import osprint(f"复制文件: {file}")

2023-06-21 17:15:40 47

原创 ppppppp

import subprocess

2023-06-21 14:22:56 204

原创 去掉最后的字符

print(“BAT 文件的打印输出:”)print(“未找到所需内容”)print(“所需内容:”)

2023-06-21 13:43:00 50

原创 查找中间内容且处理error

output, error = process.communicate() # 获取标准输出和标准错误输出。print(“BAT 文件的打印输出:”)print(“执行过程中出现错误:”)print(“未找到所需内容”)print(“所需内容:”)

2023-06-21 11:45:03 48

原创 查找中间内容

output, _ = process.communicate() # 获取标准输出。print(“BAT 文件的打印输出:”)print(“未找到所需内容”)print(“所需内容:”)

2023-06-21 11:43:41 62

原创 补充非popen的图片

2023-06-21 11:34:23 44

原创 补充内容如下

2023-06-21 11:30:18 54

原创 python

print(“BAT 文件的打印输出:”)print(“未找到新生成的文件路径名”)print(“BAT 文件的打印输出:”)print(“未找到新生成的文件路径名”)print(“新生成的文件路径名:”)print(“新生成的文件路径名:”)

2023-06-21 11:10:40 220

原创 pythonbat

import os。

2023-06-20 17:30:35 124 2

原创 python

import ossn = input(“请输入参数 sn:”)bat_file = ‘a.bat’command = f’{bat_file} {sn}’output = os.popen(command).read()print(output)

2023-06-19 17:34:02 46

原创 bat与bat

2023-06-19 16:59:32 55

原创 python

file = open(‘output.txt’, ‘w’)# 清空文件内容file.truncate()# 关闭文件file.close()# 运行循环写入for i in range(10): # 打开文件(追加模式) file = open(‘output.txt’, ‘a’) # 写入数据 file.write(f"Data {i}\n") # 关闭文件 file.close()

2023-06-16 15:19:06 46 2

原创 【无标题】

(https://img-blog.csdnimg.cn/4aff0fe99c4449a4bd3b9d4c41660a82.jpg)import osimport redir_path = “D:/ca”folders = [f for f in os.listdir(dir_path) if os.path.isdir(os.path.join(dir_path, f))]if not folders:print(“Error: 没有找到任何文件夹!”)exit()latest_folder

2023-06-15 09:58:55 103

原创 2Python

bat_path = r"D:\ca\a.bat" # 批处理文件的路径# 使用 start 命令启动批处理文件,并等待其执行完毕后关闭。subprocess.run([“start”, “/wait”, “cmd.exe”, “/c”, bat_path], shell=True)在这个代码中,我们使用了 subprocess.run() 函数来启动 cmd.exe 命令行窗口,并在其中使用 start /wait 命令来启动批处理文件 a.bat。

2023-06-13 23:50:23 169 2

原创 Python正则

import osimport globimport repath = r’D:\ca’list_of_files = glob.glob(path + ‘/*’)latest_folder = max(list_of_files, key=os.path.getctime)xml_file = glob.glob(latest_folder + ‘/*.xml’)[0] # 只取第一个XML文件with open(xml_file, ‘r’) as f:xml_text = f.read()

2023-06-13 13:47:05 98 1

原创 pythom

import osimport globimport repath = r’D:\ca’list_of_files = glob.glob(path + ‘/*’)latest_folder = max(list_of_files, key=os.path.getctime)xml_file = glob.glob(latest_folder + ‘/*.xml’)[0] # 只取第一个XML文件with open(xml_file, ‘r’) as f:xml_text = f.read()

2023-06-13 13:41:44 82 1

原创 python

2023-06-13 10:50:28 72 1

原创 python

)latest_folder = max(list_of_files, key=os.path.getctime)# 查找xml文件并读取内容xml_file = glob.glob(latest_folder + '/import glob# 查找最新的文件夹path = r’D:\ca’list_of_files = glob.glob(path + ‘/

2023-06-13 10:33:12 93 1

原创 python

import osimport redef get_newest_dir(dir_path):dirs = [d for d in os.listdir(dir_path) if os.path.isdir(os.path.join(dir_path, d))]newest_dir = max(dirs, key=lambda d: os.path.getctime(os.path.join(dir_path, d)))return os.path.join(dir_path, newest_dir

2023-06-12 22:01:23 81

原创 【无标题】

。。。。

2023-06-12 21:44:52 88 1

原创 2020-08-31

BFS多用于寻找最短路径的问题(每个节点最多只访问一次),DFS多用于快速发现底部节点(求共有多少条路径)

2020-08-31 23:19:38 119

原创 2020-08-31

scanf在输入整型数据和字符型数据时的不同#include<stdio.h>#include<string.h>#includeusing namespace std;int main(){char map[3][3];for(int i=0;i<3;i++){ for(int j=0;j<3;j++) scanf("%c",&map[i][j]); //getchar();//读掉回车 }for(int i=0;i<3;i+

2020-08-31 22:58:47 90

原创 涂色问题

涂色问题记录下这个特别时期的学校课设,大二渣渣,不会用qt来可视化,最后dalao帮忙,用python解决了。-_-||,是我太渣import mathimport timeimport tkinter as tk #用python中的tkinter模块和其中的Canvas画布控件.from tkinter import *用dfs深度搜索来解决这个问题.color = [‘r...

2020-03-18 20:34:27 461

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除