首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
慢热的牛油果风度翩翩
获赞
6
粉丝
0
关注
0
看过 TA
2
海南科技职业大学
2025
数据分析师
IP属地:海南
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑慢热的牛油果风度翩翩吗?
发布(80)
评论
刷题
慢热的牛油果风度翩翩
关注TA,不错过内容更新
关注
2023-11-30 08:55
海南科技职业大学 数据分析师
题解 | #修正错误的字母#
name = input() print(name.replace('a*','ab'))
0
点赞
评论
收藏
分享
2023-11-30 08:52
海南科技职业大学 数据分析师
题解 | #单词造句#
b = [] while True: a = input('') if a == '0': break else: b.append(a) c=' '.join(b) print(c)
0
点赞
评论
收藏
分享
2023-11-30 08:38
海南科技职业大学 数据分析师
题解 | #字符的类型比较#
a = input() print(a.isalpha()) print(a.isdigit()) print(a.isspace())
0
点赞
评论
收藏
分享
2023-11-30 08:35
海南科技职业大学 数据分析师
题解 | #列表中第一次出现的位置#
a = input().split() print(a.index("NiuNiu"))
0
点赞
评论
收藏
分享
2023-11-30 08:33
海南科技职业大学 数据分析师
题解 | #错误出现的次数#
a = map(int,input().split()) b=0 for i in a: if i == 0: b += 1 print(b)
0
点赞
评论
收藏
分享
2023-11-30 08:27
海南科技职业大学 数据分析师
题解 | #数学幂运算#
x,y = map(int,input().split()) print(x**y,y**x,sep='\n')
0
点赞
评论
收藏
分享
2023-11-29 21:30
海南科技职业大学 数据分析师
题解 | #字母转数字#
a = input() print(ord(a))
0
点赞
评论
收藏
分享
2023-11-29 19:16
海南科技职业大学 数据分析师
题解 | #正数输出器#
a = int(input()) c = abs(a) print(c)
0
点赞
评论
收藏
分享
2023-11-29 19:15
海南科技职业大学 数据分析师
题解 | #朋友的年龄和#
a = map(int,input().split()) c = list() for i in a: c.append(i) print(sum(c))
0
点赞
评论
收藏
分享
2023-11-29 19:13
海南科技职业大学 数据分析师
题解 | #列表的最值运算#
b = map(int,input().split()) c = list() for i in b: c.append(i) print(max(c)) print(min(c))
0
点赞
评论
收藏
分享
2023-11-29 17:56
海南科技职业大学 数据分析师
题解 | #喜欢的颜色#
result_dict={'Allen': ['red', 'blue', 'yellow'], 'Tom': ['green', 'white', 'blue'], 'Andy': ['black', 'pink']} for name in sorted(result_dict.keys()): print (f"{name}'s favorite colors are:") for i in result_dict.get(name):#第一次接触这种方法吧,通过两次的键来找到对应的值 print(i)
0
点赞
评论
收藏
分享
2023-11-29 17:37
海南科技职业大学 数据分析师
题解 | #首都#
cities_dict={'Beijing': {'Capital': 'China'}, 'Moscow': {'Capital': 'Russia'}, 'Paris': {'Capital': 'France'}} for city,country in sorted(cities_dict.items()): print(f"{city} is the capital of {country['Capital']}!")#Python 字典(Dictionary) items() 函数以列表返回可遍历的(键, 值) 元组数组。
0
点赞
评论
收藏
分享
2023-11-29 17:25
海南科技职业大学 数据分析师
题解 | #姓名与学号#
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(f"{i['name']}'s student id is ...
0
点赞
评论
收藏
分享
2023-11-28 21:53
海南科技职业大学 数据分析师
题解 | #毕业生就业调查#
survey_list=['Niumei','Niu Ke Le','GURR','LOLO'] result_dict={'Niumei': 'Nowcoder','GURR': 'HUAWEI'} for i in survey_list: if i in result_dict: print('Hi, %s! Thank you for participating in our graduation survey!'%i) else: print('Hi, %s! Could you take part in our graduation ...
0
点赞
评论
收藏
分享
2023-11-28 21:43
海南科技职业大学 数据分析师
题解 | #遍历字典#
operators_dict = {'<': 'less than','==': 'equal'} print('Here is the original dict:') for i in sorted(operators_dict): print(f"Operator {i} means {operators_dict[i]}." ) print(' ') operators_dict['>']='greater than' print('The dict was changed to:') for i in sorted(operators_dict...
0
点赞
评论
收藏
分享
1
2
3
4
5
6
关注他的用户也关注了:
牛客网
牛客企业服务