首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
无言非沉默
获赞
6
粉丝
2
关注
0
看过 TA
12
男
安徽建筑大学
2023
系统工程师
IP属地:安徽
兴趣使然
私信
关注
拉黑
举报
举报
确定要拉黑无言非沉默吗?
发布(105)
评论
刷题
无言非沉默
关注TA,不错过内容更新
关注
2023-11-13 11:44
安徽建筑大学 系统工程师
题解 | #使用字典计数#
import sys a=input() b=[] c={} for i in a: b.append(i) for j in b: c.setdefault(j,b.count(j)) print(c)
0
点赞
评论
收藏
分享
2023-11-13 11:35
安徽建筑大学 系统工程师
题解 | #字典新增#
import sys var={'a': ['apple', 'abandon', 'ant'], 'b': ['banana', 'bee', 'become'], 'c': ['cat', 'come'], 'd': 'down'} var1=input() var2=input() var.setdefault(var1,var2) print(var)
0
点赞
评论
收藏
分享
2023-11-13 11:26
安徽建筑大学 系统工程师
题解 | #查字典#
import sys var={'a': ['apple', 'abandon', 'ant'], 'b': ['banana', 'bee', 'become'], 'c': ['cat', 'come'], 'd': 'down'} var1=input() for i in var.keys(): if i == var1: print(" ".join(var.get(i)))
0
点赞
评论
收藏
分享
2023-11-13 11:21
安徽建筑大学 系统工程师
题解 | #生成字典#
import sys a=tuple(input().split(" ")) b=tuple(input().split(" ")) print(dict(zip(a,b)))
0
点赞
评论
收藏
分享
2023-11-13 11:06
安徽建筑大学 系统工程师
题解 | #喜欢的颜色#
import sys result_dict={'Allen': ['red', 'blue', 'yellow'],'Tom': ['green', 'white', 'blue'],'Andy': ['black', 'pink']} for i in sorted(result_dict.keys()): print("{}'s favorite colors are:".format(i)) for j in result_dict.get(i): print(j)
0
点赞
评论
收藏
分享
2023-11-13 10:50
安徽建筑大学 系统工程师
题解 | #首都#
import sys cities_dict={'Beijing': {'Capital': 'China'},'Moscow': {'Capital': 'Russia'},'Paris': {'Capital': 'France'}} for i in cities_dict.keys(): print('{} is the capital of {}!'.format(i,cities_dict.get(i).get('Capital')))
0
点赞
评论
收藏
分享
2023-11-13 10:39
安徽建筑大学 系统工程师
题解 | #姓名与学号#
import sys my_dict_1={'name': 'Niuniu','Student ID': 1} my_dict_2={'name': 'Niumei','Student ID': 2} my_dict_3={'name': 'Niu Ke Le','Student ID': 3} dict_list=[] dict_list.append(my_dict_1) dict_list.append(my_dict_2) dict_list.append(my_dict_3) for i in dict_list: print('{}\'s student id is {}...
0
点赞
评论
收藏
分享
2023-11-13 10:30
安徽建筑大学 系统工程师
题解 | #毕业生就业调查#
import sys survey_list=['Niumei','Niu Ke Le','GURR','LOLO'] result_dict={ 'Niumei': 'Nowcoder', 'GURR': 'HUAWEI' } for i in survey_list: if i in result_dict.keys(): print('Hi, {}! Thank you for participating in our graduation survey!'.format(i)) else: print('Hi, {}! ...
0
点赞
评论
收藏
分享
2023-11-13 10:19
安徽建筑大学 系统工程师
题解 | #遍历字典#
import sys a={ '<':'less than', '==':'equal' } print("Here is the original dict:") for keys in a: print('Operator {} means {}.'.format(keys,a.get(keys))) print('\r') print('The dict was changed to:') a.setdefault('>','greater than') for keys in a: print('O...
0
点赞
评论
收藏
分享
2023-11-12 17:46
安徽建筑大学 系统工程师
题解 | #增加元组的长度#
import sys a=[] for i in range(0,5): a.append(i+1) print(tuple(a)) print(len(a)) for j in range(5,10): a.append(j+1) print(tuple(a)) print(len(a))
0
点赞
评论
收藏
分享
2023-11-12 17:14
安徽建筑大学 系统工程师
题解 | #名单中出现过的人#
import sys a=('Tom', 'Tony', 'Allen', 'Cydin', 'Lucy', 'Anna') b=input() if b in a: print(a) print('Congratulations!') else: print(a) print('What a pity!')
0
点赞
评论
收藏
分享
2023-11-12 15:17
安徽建筑大学 系统工程师
题解 | #输出前三同学的成绩#
import sys a=tuple(input().split(" ")) print(a[0:3])
0
点赞
评论
收藏
分享
2023-11-12 12:19
安徽建筑大学 系统工程师
题解 | #运动会双人项目#
import sys a=input() b=input() d=[a,b] print(tuple(d))
0
点赞
评论
收藏
分享
2023-11-12 11:52
安徽建筑大学 系统工程师
题解 | #牛牛的矩阵相加#
import sys n=int(input()) a=[[1,2,3],[4,5,6],[7,8,9]] for i in range(0,len(a)): for j in range(0,len(a[i])): a[i][j]=a[i][j]*n print(a)
0
点赞
评论
收藏
分享
2023-11-12 11:00
安徽建筑大学 系统工程师
题解 | #跳过列表的某个元素#
import sys a=[] for i in range(0,15): a.append(i+1) for j in a: if j == 13: continue else: print(j,end=' ')
0
点赞
评论
收藏
分享
1
2
3
4
5
6
7
关注他的用户也关注了:
牛客网
牛客企业服务