首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
元宝0121
获赞
0
粉丝
0
关注
0
看过 TA
0
Northeastern University
2026
产品经理
IP属地:广东
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑元宝0121吗?
发布(27)
评论
刷题
收藏
元宝0121
关注TA,不错过内容更新
关注
2024-07-08 22:09
Northeastern University 产品经理
题解 | #用where过滤空值练习#
select device_id,gender,age,university from user_profile where age is not null
0
点赞
评论
收藏
分享
2024-07-08 22:08
Northeastern University 产品经理
题解 | #查找除复旦大学的用户信息#
select device_id,gender,age,university from user_profile where university != '复旦大学'
0
点赞
评论
收藏
分享
2024-07-08 21:25
Northeastern University 产品经理
题解 | #姓名与学号#
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 element in dict_list: key = element['name'] value = e...
0
点赞
评论
收藏
分享
2024-07-08 21:10
Northeastern University 产品经理
题解 | #毕业生就业调查#
survey_list = ['Niumei','Niu Ke Le','GURR','LOLO'] result_dict = {'Niumei': 'Nowcoder','GURR': 'HUAWEI'} for key in survey_list: if key in result_dict.keys(): print(f'Hi, {key}! Thank you for participating in our graduation survey!') else: print(f'Hi, {key}! Could you take part in our graduation sur...
0
点赞
评论
收藏
分享
2024-07-08 20:35
Northeastern University 产品经理
题解 | #提前结束的循环#
x = int(input()) list = [3, 45, 9, 8, 12, 89, 103, 42, 54, 79] for element in list: if x == element: break print(element)
0
点赞
评论
收藏
分享
2024-07-08 20:29
Northeastern University 产品经理
题解 | #找到HR#
users_list = ['Niuniu','Niumei','HR','Niu Ke Le','GURR','LOLO' ] for element in users_list: if element =='HR': print('Hi, HR! Would you like to hire someone?') else: print(f'Hi, {element}! Welcome to Nowcoder!')
0
点赞
评论
收藏
分享
2024-07-08 20:26
Northeastern University 产品经理
题解 | #格式化清单#
list = ['apple', 'ice cream', 'watermelon', 'chips', 'hotdogs', 'hotpot'] while list != []: list.pop(-1) print(list)
0
点赞
评论
收藏
分享
2024-07-08 20:23
Northeastern University 产品经理
题解 | #列表解析#
list = [] for i in range(0,10): list.append(i) print(list)
0
点赞
评论
收藏
分享
2024-07-08 20:21
Northeastern University 产品经理
题解 | #2的次方数#
my_list = [] for x in range(1,11): my_list.append(2**x) for y in my_list: print(y)
0
点赞
评论
收藏
分享
2024-07-08 19:05
Northeastern University 产品经理
题解 | #被5整除的数字#
my_list = [] for element in range(1,51): if element%5 == 0: print(element)
0
点赞
评论
收藏
分享
2024-07-08 18:57
Northeastern University 产品经理
题解 | #前10个偶数#
my_list = list(range(0,20,2)) for element in my_list: print(element)
0
点赞
评论
收藏
分享
2024-07-08 18:50
Northeastern University 产品经理
题解 | #累加数与平均值#
list = input().split() sum = 0 for age in list: sum += int(age) print(sum,'%.1f' %(sum/len(list)))
0
点赞
评论
收藏
分享
1
2
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客网在线编程
牛客网题解
牛客企业服务