Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
bellcode
/
lesson10-4
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
9321c141
authored
Dec 09, 2023
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save project
parent
849c73d6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
9 deletions
quiz.py
quiz.py
View file @
9321c141
# 勇于挑战的创造师,下面的代码犯了两类典型错误,请你把bug揪出来吧。
area
=
[
'盘丝洞'
,
'白骨洞'
,
'大雁塔'
]
today_menu
=
{
'前菜'
:{
'熏鲢鱼'
:
20
,
'生蚝'
:
20
,
'面包'
:
10
},
monster
=
{
'盘丝洞'
:
'蜘蛛精'
,
'白骨洞'
:
'白骨精'
,
'大雁塔'
:
'花妖'
}
'汤'
:{
'玉米浓汤'
:
15
,
'蔬菜汤'
:
15
,
'海鲜汤'
:
15
},
# 打印出大雁塔
'主菜'
:{
'鱼'
:
40
,
'虾'
:
30
,
'蟹'
:
20
,
'贝壳类'
:
20
},
print
(
area
[
3
])
'间菜'
:{
'牛扒'
:
25
,
'煨菜'
:
25
,
'肉排'
:
30
},
# 向字典中添加 '地府':'僵尸'
"烧烤沙拉"
:{
'需要'
:
15
,
'不需要'
:
0
},
monster
.
append
(
'地府'
,
'僵尸'
)
'甜品'
:{
'可丽露'
:
20
,
'优格吐司'
:
15
,
'蓝莓松饼'
:
20
}
print
(
monster
)
# 报菜名
\ No newline at end of file
# 悟空和诺依到了一家特色餐馆,这家餐馆最大的特色就是有个自动报菜名机器人
# 通常它会自动说出今天的前菜有哪些汤有哪些主菜有哪些等等~
# 可是今儿它有些bug产生的结果很奇怪,你可以检查出来么?
for
k
,
v
in
today_menu
.
items
():
print
(
'今日'
+
k
+
'有:'
)
for
i
in
v
.
values
():
print
(
i
,
end
=
' '
)
print
()
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment