不错就是对
不错就是对
全部文章
分类
题解(256)
归档
标签
去牛客网
登录
/
注册
不错就是对的博客
Work hard and be nice to people.
全部文章
(共234篇)
题解 | #梦想的大学#
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
479
题解 | #首都#
NP31 首都 思路: 注意如何取k和v; 代码如下: cities_dict = {'Beijing': {'Capital': 'China'},'Moscow': {'Capital': 'Russia'},'Paris': {'Capital': 'France'}} for k in so...
Python3
2022-06-07
0
409
题解 | #喜欢的颜色#
NP30 喜欢的颜色 思路: 创建字典,然后for循环打印即可; 代码如下: result_dict = {'Allen': ['red', 'blue', 'yellow'],'Tom': ['green','white', 'blue'],'Andy': ['black', 'pink']} f...
Python3
2022-06-07
0
352
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页