Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
bellcode
/
lesson8-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
1e8e16d4
authored
Jun 04, 2022
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save project
parent
868467d5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
11 deletions
3.py
diy1.py
3.py
0 → 100644
View file @
1e8e16d4
scores
=
[
"语文"
,
89
,
"数学"
,
95
,
"英语"
,
80
]
def
get_average
(
scores
):
sun_score
=
0
for
subject
score
in
scores
.
items
():
sum_score
+=
score
print
(
"现在总分是
%
d
%
sum_score"
)
ave_score
=
sum_score
/
len
(
scores
)
print
(
"平均分是
%
d
%
ave_score"
)
get_average
(
scores
)
\ No newline at end of file
diy1.py
View file @
1e8e16d4
...
@@ -3,13 +3,4 @@ name=input('你叫啥名啊?')
...
@@ -3,13 +3,4 @@ name=input('你叫啥名啊?')
power
=
int
(
input
(
'你臂力多少啊?'
))
power
=
int
(
input
(
'你臂力多少啊?'
))
list_hero
=
[
'猴三'
,
10
,
'猴一'
,
21
,
'猴五'
,
22
,
'猴队长'
,
29
,
'猴七'
,
30
]
list_hero
=
[
'猴三'
,
10
,
'猴一'
,
21
,
'猴五'
,
22
,
'猴队长'
,
29
,
'猴七'
,
30
]
for
i
in
range
(
len
(
list_hero
)):
for
i
in
range
(
len
(
list_hero
)):
if
i
%
2
==
1
and
list_hero
[
i
]
>=
power
:
if
i
%
2
==
1
and
list_hero
[
i
]
>
list_hero
.
insert
(
i
-
1
,
name
)
\ No newline at end of file
list_hero
.
insert
(
i
,
power
)
break
print
(
list_hero
)
# 请注释掉上面的代码,并在下一行创建一个名为dict_hero的字典
dict_hero
=
print
(
dict_hero
)
dict_hero
{
'猴三'
:
10
,
'猴一'
:
21
,
'猴五'
:
22
,
'猴队长'
:
29
,
'猴七'
:
30
}
print
(
dice_hero
)
\ 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