摘要: numpy入门 1.1 理解python中的数据类型 1.1.1 python中的列表 l = list(range(10)) print(l) l2 = [str(c) for c in l] l3 = [True, "2", 3.0, 4] l4 = [type(item) for item i 阅读全文
posted @ 2022-03-25 08:27 W-forever 阅读(44) 评论(0) 推荐(0)
摘要: #include<iostream> #include<string> #include<vector> #include<functional> #include<algorithm> #include<map> #include<queue> using namespace std; //一个类 阅读全文
posted @ 2022-03-25 08:27 W-forever 阅读(29) 评论(0) 推荐(0)