- 博客(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
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
原创 查找中间内容且处理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
原创 python
print(“BAT 文件的打印输出:”)print(“未找到新生成的文件路径名”)print(“BAT 文件的打印输出:”)print(“未找到新生成的文件路径名”)print(“新生成的文件路径名:”)print(“新生成的文件路径名:”)
2023-06-21 11:10:40 220
原创 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
原创 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
)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
原创 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关注的人