摘要: https://wwe.lanzoul.com/i8exnzhq7ni 进入地址后下载并解压 进入GeForce Experience关闭游戏内覆盖 进入到下面的文件夹内 C:\Program Files\NVIDIA Corporation\NVIDIA GeForce Experience\os 阅读全文
posted @ 2022-02-01 23:01 幻非 阅读(1388) 评论(0) 推荐(0)
摘要: import os file = r' 文件路径 ' os.system(f'explorer /select, "{file}') 阅读全文
posted @ 2022-01-23 19:26 幻非 阅读(1908) 评论(0) 推荐(0)
摘要: def bytes_conversion(file_path): """ 计算文件大小 :param file_path: 文件路径 :return: 文件大小 """ number = os.path.getsize(file_path) symbols = ('K', 'M', 'G', 'T' 阅读全文
posted @ 2022-01-23 19:25 幻非 阅读(301) 评论(0) 推荐(0)
摘要: 本程序基于pipreqs程序实现 操作 首先安装 pip install pipreqs 依次进入设置>>工具>>外部工具 点击加号,进入如下编辑 输入如下内容 pipreqs $FileDir$ --encoding=utf8 --force $ProjectFileDir$ 点击确定 执行 等待 阅读全文
posted @ 2022-01-23 19:07 幻非 阅读(1579) 评论(0) 推荐(1)
摘要: 右键开始菜单选择运行 在打开的运行框内输入“regedit” 在打开的注册表编辑器上方输入栏中输入 HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\CloudStore\Store\Cache\DefaultAccount 依次 阅读全文
posted @ 2022-01-07 17:45 幻非 阅读(652) 评论(0) 推荐(0)
摘要: 读取Excel文件 csv.reader函数最为常用 import csv with open('excel.csv', 'r') as file: for i in csv.reader(file): print(i) 写入Excel文件 csv_write.writerow()将传入的列表内容写 阅读全文
posted @ 2022-01-01 22:01 幻非 阅读(63) 评论(0) 推荐(0)
摘要: OS模块 # 返回当前目录 os.getcwd() # 判断目录是否存在 os.path.exists(path) # 判断目录是否为文件 os.path.isfile(path) # 判断目录是否为文件夹 os.path.isdir(path) # 返回文件名 os.path.basename(p 阅读全文
posted @ 2021-12-18 17:40 幻非 阅读(141) 评论(0) 推荐(0)
摘要: Sublime Text 4的安装 下载安装包 https://www.sublimetext.com/download 下载并依照文章运行破解补丁 https://www.cnblogs.com/xyida/p/14932186.html 找到大神的破解补丁进行下载 安装中文补丁 点击菜单栏中的P 阅读全文
posted @ 2021-12-18 09:21 幻非 阅读(311) 评论(0) 推荐(0)