摘要: ![image](https://img2024.cnblogs.com/blog/1268388/202401/1268388-20240103084633986-1975674713.png) 阅读全文
posted @ 2024-01-03 08:47 施楽 阅读(13) 评论(0) 推荐(0)
摘要: ![image](https://img2024.cnblogs.com/blog/1268388/202401/1268388-20240103083130260-1856240473.png) 阅读全文
posted @ 2024-01-03 08:33 施楽 阅读(9) 评论(0) 推荐(0)
摘要: 今天把jupternotebook打开,试着运行了下代码。第一个import numpy语句就报错了,于是用pip下了个numpy。结果不行,搞了半天还是没辙。静下来想想,是不是版本问题,然后想起这里用的python版本可能不是环境变量配的3.9,一查果然是3.7,还是装在visual studio 阅读全文
posted @ 2023-12-22 18:09 施楽 阅读(25) 评论(0) 推荐(0)
摘要: 网卡、虚拟机、注册表 前两天“无意中”把本子的网络重置了,结果所有网卡都掉了。没办法只能卸了重装。翻出吃灰的u盘,把mini上下的离线版驱动人生传到本子上安装,一切似乎都在往恢复正常上靠,几个驱动的安装进度条给人一种确定的安全感。然而没有什么卵用,查看设备管理器全是异常代码56,才知道我本子上最近装 阅读全文
posted @ 2023-12-21 09:25 施楽 阅读(37) 评论(0) 推荐(0)
摘要: 点击查看代码 import java.time.DayOfWeek; import java.time.LocalDate; public class CalendarTest { public static void main(String[] args) { LocalDate date = L 阅读全文
posted @ 2022-03-26 12:46 施楽 阅读(113) 评论(0) 推荐(0)
摘要: View code package main import ( "fmt" "math/rand" "time" ) func bubbleSorter(integers [11]int) { var num = 11 var isSwapped bool isSwapped = true for 阅读全文
posted @ 2022-03-14 21:53 施楽 阅读(44) 评论(0) 推荐(0)