Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
bellcode
/
lesson8-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
9cf853ab
authored
Jun 27, 2021
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save project
parent
fed590e6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
8 deletions
1111.py
114514.py
diy.py
1111.py
0 → 100644
View file @
9cf853ab
list
=
[
"1"
,
"2"
,
"3"
,
"八戒"
,
"4"
,
"5"
]
list
.
pop
(
3
)
list
.
append
(
"诺依"
)
print
(
list
)
red
=
list
[
0
:
3
]
blue
=
list
[
3
:
7
]
print
(
red
)
print
(
blue
)
114514.py
View file @
9cf853ab
lovelive
=
{
"香蕉"
:
199
,
"苹果"
:
250
,
"芒果"
:
225
,
"葡萄"
:
180
,
"西瓜"
:
114514
}
lovelive
=
{
"香蕉"
:
199
,
"苹果"
:
250
,
"芒果"
:
225
,
"葡萄"
:
180
,
"西瓜"
:
114514
}
mom
=
input
(
"请输入西瓜今日价格:"
)
mom
=
input
(
"请输入西瓜今日价格:"
)
if
mom
in
lovelive
:
if
int
(
mom
)
>
lovelive
[
"西瓜"
]:
if
mom
>
lovelive
[
"西瓜"
]:
print
(
"这个是西瓜
\n
是个好东西
\n
黑人售卖
\n
店面还超大"
)
print
(
"这个是西瓜
\n
是个好东西
\n
黑人售卖
\n
店面还超大"
)
else
:
print
(
"先买个一车再说"
)
else
:
else
:
print
(
"有这个东西吗???"
)
print
(
"先买个一车再说"
)
\ No newline at end of file
\ No newline at end of file
diy.py
View file @
9cf853ab
# 神奇百货中的物品已经帮你创建好啦,接下来要看你的了~
# 神奇百货中的物品已经帮你创建好啦,接下来要看你的了~
dict
=
{
'可口可乐'
:
3
,
'旺仔牛奶'
:
4
,
'农夫山泉'
:
1
,
'辣条'
:
3
,
'巴西烤肉'
:
2
,
'果冻'
:
4
,
'乐事'
:
5
,
'奥利奥'
:
10
,
'巧克力'
:
6
}
dict
=
{
'可口可乐'
:
3
,
'旺仔牛奶'
:
4
,
'农夫山泉'
:
1
,
'辣条'
:
3
,
'巴西烤肉'
:
2
,
'果冻'
:
4
,
'乐事'
:
5
,
'奥利奥'
:
10
,
'巧克力'
:
6
}
r
=
input
(
"亲,请问亲要买点什么呢?:)"
)
r
=
input
(
"亲,请问亲要买点什么呢?:)"
)
if
r
in
dict
:
if
int
(
r
)
dict
:
print
(
"亲,您需要购买的商品是"
+
r
+
"吗?如果是的,请使用现金支付(仅支持比特币支付)"
+
str
(
dict
[
r
])
+
"比特币:)"
)
print
(
"亲,您需要购买的商品是"
+
r
+
"吗?如果是的,请使用现金支付(仅支持比特币支付)"
+
str
(
dict
[
r
])
+
"比特币:)"
)
else
:
else
:
print
(
"亲爱的用户,亲没有找到您需要的商品呢~
\n
可能是以下其中的一个原因:
\n
1.网络不好
\n
2.没有这个商品
\n
3.已售完"
)
print
(
"亲爱的用户,亲没有找到您需要的商品呢~
\n
可能是以下其中的一个原因:
\n
1.网络不好
\n
2.没有这个商品
\n
3.已售完"
)
...
...
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