Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
lesson9_1
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
0677304d
authored
Oct 26, 2024
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auto save
parent
95839a8f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
store.py
store.py
View file @
0677304d
goods
=
{
'可喜可贺'
:
3
,
'旺仔牛马'
:
4
,
'农夫山贼'
:
1
,
'辣条'
:
3
,
'拉稀烤猪'
:
2
,
'果冻'
:
4
,
'乐事'
:
5
,
'奥利给'
:
10
,
'巧克力'
:
6
}
#
goods = {'可喜可贺':3,'旺仔牛马':4,'农夫山贼':1,'辣条':3,'拉稀烤猪':2,'果冻':4,'乐事':5,'奥利给':10,'巧克力':6}
g
=
goods
.
pop
(
"农夫山泉"
)
#
g=goods.pop("农夫山泉")
print
(
g
)
#
print(g)
print
(
goods
)
#
print(goods)
# 请将"农夫山泉"删掉,并打印出新的商品信息
# 请将"农夫山泉"删掉,并打印出新的商品信息
score
=
{
'语文'
:
91
,
'数学'
:
88
,
'音乐'
85
}
for
i
in
score
:
print
(
i
)
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