02 2022 档案

摘要:查看当前存在哪些环境 conda env list 创建新的虚拟环境 conda create -n your_env_name python=X.X(2.7、3.6等) 激活虚拟环境 conda activate your_env_name 关闭虚拟环境 conda deactivate 删除虚拟 阅读全文
posted @ 2022-02-24 14:40 nate_pan 阅读(53) 评论(0) 推荐(0) 编辑
摘要:// 交换数组元素 var swapItems = function (arr, index1, index2) { arr[index1] = arr.splice(index2, 1, arr[index1])[0]; return arr; }; // 上移 var upRecord = fu 阅读全文
posted @ 2022-02-15 14:29 nate_pan 阅读(142) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示