2868: 最长最短单词 摘要:解题思路:注意事项:参考代码:l = list(input().split())a = max(l,key=len)b = min(l,key=len)print(a)print(b)…… 题解列表 2024年08月02日 0 点赞 0 评论 78 浏览 评分:0.0
2868: 最长最短单词 摘要:解题思路:注意事项:参考代码:s = input().split() s1 = [len(i) for i in s] max = max(s1) min = min(s1) for i in…… 题解列表 2024年03月25日 0 点赞 0 评论 169 浏览 评分:4.0
最长最短单词 摘要:解题思路:注意事项:参考代码:sentence = input().split() # 分割输入的句子为单词列表longest_word = max(sentence, key=len) # 找到…… 题解列表 2024年02月21日 0 点赞 2 评论 156 浏览 评分:9.9
最长最短单词 摘要:解题思路:注意事项:参考代码:myList=input().split()mydict= {}newList=[]for temp in myList: newList.append(len(t…… 题解列表 2023年12月20日 0 点赞 0 评论 160 浏览 评分:2.0