上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 35 下一页
摘要: 记录一些好软件 pdf文件转化:https://pdfgear.com/zh/ A Windows and Office activator:https://github.com/massgravel/Microsoft-Activation-Scripts JetBrains Activation 阅读全文
posted @ 2024-01-08 22:50 __username 阅读(16) 评论(0) 推荐(0) 编辑
摘要: # 使用 NLTK 进行文本处理 import nltk from nltk.tokenize import word_tokenize path = r"E:\Code\Python\录制\python-crawler\作业\test" nltk.data.path.append(path) # 阅读全文
posted @ 2024-01-06 19:53 __username 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 链接:https://www.gyan.dev/ffmpeg/builds/ffmpeg-git-full.7z 生成10秒曲子代码 好难听 from pydub import AudioSegment import numpy as np # Helper function to create a 阅读全文
posted @ 2023-12-30 20:21 __username 阅读(12) 评论(0) 推荐(0) 编辑
摘要: toRefs是Vue.js 3中的一个实用函数,用于将响应式对象转换为普通对象,其中每个属性都是一个ref对象。这在某些情况下很有用,特别是想要将一个包含多个响应式属性的对象传递给子组件时。 以下是toRefs的基本用法: import { reactive, toRefs } from 'vue' 阅读全文
posted @ 2023-12-25 20:46 __username 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 安装pnpm pnpm create vite@latest my-vue-app -- --template vue cd my-vue-app pnpm install pnpm run dev 文档 https://cn.vitejs.dev/ 阅读全文
posted @ 2023-12-25 07:38 __username 阅读(10) 评论(0) 推荐(0) 编辑
摘要: win11 常用方法 @echo off start "" "D:\A娱乐\Tencent\WeChat\WeChat.exe" start "" "D:\A娱乐\Tencent\WeChat\WeChat.exe" exit 如果路径存在中文运行过程有问题 最上方添加添加下列一行 chcp 650 阅读全文
posted @ 2023-12-18 11:07 __username 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 如图 阅读全文
posted @ 2023-12-14 09:50 __username 阅读(5) 评论(0) 推荐(0) 编辑
摘要: import pandas as pd # 读取CSV文件 csv_file_path = 'path/to/your/file.csv' df = pd.read_csv(csv_file_path) # 将数据写入Excel文件 excel_file_path = 'path/to/your/o 阅读全文
posted @ 2023-12-12 20:20 __username 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 1.安装导入 from flask_sqlalchemy import SQLAlchemy 注册 # 创建拓展插件实例 db = SQLAlchemy() app = Flask(__name__) app.secret_key = 'mysecretkey123' # 配置 SQLite 数据库 阅读全文
posted @ 2023-12-11 22:13 __username 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 本人使用nvm 安装的node 解决方法: cmd 管理员模式下 npm install npm install -g jsdom tough-cookie与上同理 再把目录 放到环境变量中 参考: https://blog.csdn.net/qyk594760/article/details/13 阅读全文
posted @ 2023-12-10 23:16 __username 阅读(62) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 35 下一页

本文作者:DIVMonster

本文链接:https://www.cnblogs.com/guangzan/p/12886111.html

版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。