摘要: 锁屏壁纸路径:C:\Users\用户名\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets 开机启动项: Win + R,输入“shell:startup” h 阅读全文
posted @ 2023-07-21 21:43 风中奔跑 阅读(37) 评论(0) 推荐(0)
摘要: 基础 for循环: for i in range(n): 循环n次, i=0 ~ n-1 for i in range(m, n): 循环n-m次,i= m ~ n-1 数组 初始化数组: arr = [] 向数组添加元素: arr.append('Hello') 从数组删除元素: arr.remo 阅读全文
posted @ 2023-07-21 19:18 风中奔跑 阅读(26) 评论(0) 推荐(0)
摘要: 读取二进制文件示例代码: #include <iostream> #include <vector> #include <fstream> std::vector<char> ReadFile(const std::string& fileName) { std::ifstream f(fileNa 阅读全文
posted @ 2023-07-21 03:10 风中奔跑 阅读(188) 评论(0) 推荐(0)