2024年12月10日
摘要: 1 集合框架 1去重排序 //LinkedHashMap 基于哈希表和双向链表的组合实现,因此它保持了插入顺序 //TreeMap 会根据键的自然顺序或者自定义的比较器对键进行排序(按升序排列) import java.util.*; public class Main { public stati 阅读全文
posted @ 2024-12-10 14:51 Hoshino1 阅读(1) 评论(0) 推荐(0) 编辑
  2024年12月4日
摘要: 实验1 floor,ceil #向下取整,向上取整 a,b,c=map(int,input().split()) a,b=map(int,input().split())#得到输入的去空格的int型数值,分别赋予a,b x=complex(a, b)#x用来表示一个复数,比如complex(1,2) 阅读全文
posted @ 2024-12-04 22:03 Hoshino1 阅读(3) 评论(0) 推荐(0) 编辑
  2024年12月3日
摘要: ![image](https://img2024.cnblogs.com/blog/3480708/202412/3480708-20241203151219062-1019212840.png) 阅读全文
posted @ 2024-12-03 16:05 Hoshino1 阅读(2) 评论(0) 推荐(0) 编辑
  2024年11月18日
摘要: 第一二章 and 运算符会从左到右依次评估表达式,并返回第一个假值(如果有的话),如果没有假值,则返回最后一个值。 在 and 运算符中,假值包括:False、None、0、空字符串 ""、空列表 [] 等。 如果用二进制binary表示,那么数字前必须加上0b或0B; 如果用八进制octonary 阅读全文
posted @ 2024-11-18 17:46 Hoshino1 阅读(1) 评论(0) 推荐(0) 编辑
  2024年11月15日
摘要: 1 函数 1 列表推导式 l=[i for i in range(m,n+1) if prime(i)] return sum(l) 2 计算字符 def CountDigit(number,digit): number,digit=str(number),str(digit) return l.c 阅读全文
posted @ 2024-11-15 17:45 Hoshino1 阅读(2) 评论(0) 推荐(0) 编辑
  2024年11月8日
摘要: 1,判断 2,单选 3,多选 4,主观 阅读全文
posted @ 2024-11-08 17:40 Hoshino1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1,判断 2,单选 3,多选 4,填空 5,主观 阅读全文
posted @ 2024-11-08 17:40 Hoshino1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1,判断 2,单选 3,多选 4,主观 阅读全文
posted @ 2024-11-08 17:39 Hoshino1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1,判断 2,单选 3,多选 4,主观 1, import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.util.Scanner; public c 阅读全文
posted @ 2024-11-08 17:38 Hoshino1 阅读(2) 评论(0) 推荐(0) 编辑
  2024年11月5日
摘要: 1 判断 1,在Python中,find()函数并不是用于列表的搜索函数。find()是字符串类型的方法,用来查找子字符串在父字符串中的位置。 如果你尝试使用find()在列表中查找元素,它会导致错误, 2,字符串和列表都是序列类型。 3,列表lst=[12, -5, -22, -10, -26, 阅读全文
posted @ 2024-11-05 16:13 Hoshino1 阅读(3) 评论(0) 推荐(0) 编辑