不错就是对
不错就是对
全部文章
分类
题解(256)
归档
标签
去牛客网
登录
/
注册
不错就是对的博客
Work hard and be nice to people.
全部文章
(共234篇)
题解 | #姓名与学号#
NP29 姓名与学号 思路: 按照要求对应创建字典,列表;for循环逐个打印即可; 代码如下: my_dict_1 = {'name':'Niuniu','Student ID':1} my_dict_2 = {'name':'Niumei','Student ID':2} my_dict_3 = ...
Python3
2022-06-07
19
1039
题解 | #毕业生就业调查#
NP28 毕业生就业调查 思路: 按照要求创建列表和字典,然后分支输出即可; 代码如下: survey_list = ['Niumei','Niu Ke Le','GURR','LOLO'] result_dict = {'Niumei':'Nowcoder','GURR':'HUAWEI'} fo...
Python3
2022-06-07
2
484
题解 | #遍历字典#
NP27 遍历字典 思路: 按照要求输入输出即可; 代码如下: operators_dict = {'<':'less than' , '==':'equal'} print('Here is the original dict:') k = operators_dict.keys() for...
Python3
2022-06-07
0
408
题解 | #牛客运动会#
NP26 牛客运动会 思路: 按照要求对应输出打印即可; 代码如下: my_tuple = ('Tom','Andy') print('Here is the original tuple:') for i in my_tuple: print(i) print() try: my...
Python3
2022-06-05
0
348
题解 | #食堂点餐#
NP25 食堂点餐 思路: 创建列表,for循环,按照要求对应输出;同时设置计数器累加; 代码如下: order_list = ['rice', 'beef', 'chips', 'pizza', 'pizza', 'yogurt', 'tomato', 'rice', 'beef'] count ...
Python3
2022-06-05
0
353
题解 | #禁止重复注册#
NP24 禁止重复注册 思路: step1:创建两个列表; step2:将cur列表转化为小写字母形式; step3:遍历new_列表,对应要求,分别打印输出; 代码如下: current_users = ['Niuniu','Niumei','GURR','LOLO'] new_users = [...
Python3
2022-06-05
37
2006
题解 | #判断列表是否为空#
NP23 判断列表是否为空 思路: 对应分支输出对应语句即可; 代码如下: my_list = [] if my_list == []: print('my_list is empty!') else: print('my_list is not empty!')
Python3
2022-06-05
5
506
题解 | #找到HR#
NP22 找到HR 思路: 对应条件,对应输出即可,可以使用格式化字符串; 代码如下: users_list = ['Niuniu','Niumei','HR','Niu Ke Le','GURR' , 'LOLO'] for i in users_list: if i == 'HR': ...
Python3
2022-06-05
0
474
题解 | #团队分组#
NP21 团队分组 思路: 切片打印即可; 代码如下: group_list = ['Tom', 'Allen', 'Jane', 'William', 'Tony'] print(group_list[0:2]) print(group_list[1:4]) print(group_list[3:...
Python3
2022-06-05
25
540
题解 | #立方解析#
NP20 立方解析 思路: step1:对应输出即可; 代码如下: my_list = [i**3 for i in range(1,11)] print(my_list)
Python3
2022-06-05
8
517
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页