Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
bellcode
/
lesson6-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
6dddcc23
authored
Jun 15, 2024
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auto save
parent
26b3b1d4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletions
diy.py
diy.py
View file @
6dddcc23
...
...
@@ -2,12 +2,18 @@
# 来,我给你起个头~
# 从前啊,有三个bro,分别是:刘备、关羽、张飞...
bro1
=
"关羽"
bro2
=
"刘备"
bro2
=
"刘备"
bro3
=
"张飞"
#将刘备,关羽,张飞放在一个列表bros中
bros
=
[
"刘备"
,
"关羽"
,
"张飞"
]
#分别建立三个列表,存储刘备,关羽,张飞的信息(姓名,出生年份,综合能力)
bro1
=
[
"关羽"
,
160
,
8.5
]
bro2
=
[
"刘备"
,
161
,
9.1
]
bro3
=
[
"张飞"
,
166
,
8.3
]
#将刘备放在桃园结义的C位
bros
[
0
]
=
"关羽"
bros
[
1
]
=
"刘备"
#输出列表bros
bros
.
pop
(
1
)
bros
.
remove
(
"关羽"
)
print
(
bros
)
\ 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