不错就是对
不错就是对
全部文章
分类
题解(256)
归档
标签
去牛客网
登录
/
注册
不错就是对的博客
Work hard and be nice to people.
全部文章
(共240篇)
题解 | #梦想的大学#
NP40 梦想的大学 思路: step1:向字典里加入键值对的方式:survey_dict[name] = university 代码如下: survey_dict = {} while True: try: print('If you have the chance, wh...
Python3
2022-06-15
0
621
题解 | #售罄的培根披萨#
NP39 售罄的培根披萨 思路: step1:参考uu们的才知道是错题emm; 代码如下: pizza_inventory=['bacon','durian','bacon','bacon','chicken','durian'] while('bacon' in pizza_inventory):...
Python3
2022-06-15
0
546
题解 | #披萨店的订单#
NP38 披萨店的订单 思路: step1:使用len()函数判断列表是否为空; 代码如下: pizza_orders = ['chichen','bacon','durian'] finished_pizza = [] while len(pizza_orders) > 0: piz...
Python3
2022-06-15
0
487
题解 | #拯救被污染的字符串#
NP41 拯救被污染的字符串 思路: step1:首先用split()切割,返回的就是列表; step2:用join()拼接; 代码如下: my_str = 'I am$ N$iuniu$, an$d I $am stu$dying in $Now$coder!' my_list = my_str....
Python3
2022-06-13
0
465
题解 | #游乐园的门票#
NP37 游乐园的门票 思路: step1:对不同情况分别判断并输出即可; 代码如下: while True: try: print("Please tell me your height!\nEnter 'quit' to end the program.") ...
Python3
2022-06-12
0
627
题解 | #被8整除的数字#
NP36 被8整除的数字 思路: step1:在不同的条件下输出对应的语句; 代码如下: while True: try: active = True print("Please enter a positive integer!\nEnter 'quit' ...
Python3
2022-06-12
0
540
题解 | #取号#
NP35 取号 思路: step1:对应输入输出即可;注意条件的判断; 代码如下: while True: try: print( "Welcome! How many people, please?\nEnter 'quit' to end the program.") ...
Python3
2022-06-12
0
479
题解 | #自动售卖饮料机#
NP34 自动售卖饮料机 思路: step1:定义输入;打印所需语句; step2:判断并输出对应语句; 代码如下: kind_of_drink = input() print('What kind of drink would you like?' ) if kind_of_drink == 'c...
Python3
2022-06-12
0
478
题解 | #牛牛的朋友#
NP33 牛牛的朋友 思路: step1:首先创建并打印原列表; step2:定义replace函数,将friends[index] = index; step3:遍历列表,每次遍历,均调用一下replace函数; step4:打印更新后的列表; 代码如下: friends_list = ['Niu...
Python2
2022-06-12
0
439
题解 | #函数求差#
NP32 函数求差 思路: 定义函数,然后传参调用即可; 代码如下: def cal(x,y): return x-y x = input() y = input() print(cal(x,y)) print(cal(y,x))
Python2
2022-06-12
0
549
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页