在冲浪的沸羊羊很想去广东逛gai
在冲浪的沸羊羊很想去广东逛gai
全部文章
分类
归档
标签
去牛客网
登录
/
注册
在冲浪的沸羊羊很想去广东逛gai的博客
全部文章
(共4篇)
题解 | 列表的最值运算
#0:使用math函数 import math num=list(map(int,input().split())) print(max(num)) print(min(num)) #1:排序 nums=input().split() #sort:true大到小;false小到大--默认 nums...
2025-05-08
0
27
题解 | 查字典
d = { "a": ["apple", "abandon", "ant"], "b": ["banana", "bee", "bec...
2025-05-07
0
28
题解 | 牛牛的矩阵相加
n = int(input()) a = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] for i in a: for j in range(0, 3): i[j] *= n print(a)
2025-05-07
0
28
题解 | 格式化清单
food_list = ["apple", "ice cream", "watermelon", "chips", "hotdogs", "hotpot"] while food_...
2025-05-07
0
24