摘要: 1.下载Miniconda 2.安装时注意选择添加path 3.使用Anaconda Prompt 4.创建虚拟环境 conda create -n python38 python=3.8 #创建一个python版本为3.8并且名为python38的虚拟环境 5.激活虚拟环境 activate py 阅读全文
posted @ 2025-07-16 07:35 wanyki 阅读(66) 评论(0) 推荐(0)
摘要: L2 = [1,2,3,4] L3 = L2.reverse() #reverse不返回列表,而是直接改变原列表 print(L3) ************* None print(" love ".join(["Everyday","Yourself","Python",])) print(" 阅读全文
posted @ 2024-04-07 18:53 wanyki 阅读(28) 评论(0) 推荐(0)
摘要: arch安装教程+部分问题解决 网络配置 # 进入iwctl iwctl # 获取device名称 我这里是 wlan0,后面注意wlan0替换成你自己device device list # 扫描附近wifi station wlan0 scan # 获取所有可连接wifi名字 station w 阅读全文
posted @ 2024-04-06 19:23 wanyki 阅读(239) 评论(0) 推荐(0)
摘要: The emulator process for AVD Pixel_2_API_30 has terminated. 错误代码1073740791 (0xC0000409) 这个问题的解决办法在网上有很多种办法,但是对于我来说都不使用,所以查看自己的studio的log文件,如果你是跟我一样的问题 阅读全文
posted @ 2024-04-05 10:00 wanyki 阅读(883) 评论(1) 推荐(0)
摘要: #### 判断素数: ```cpp #include #include using namespace std; bool su(int n){ int i=2; if(n==1) return false; for(i=2;isqrt(n)) return true; else return fa 阅读全文
posted @ 2023-05-25 16:00 wanyki 阅读(48) 评论(0) 推荐(0)