Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
bellcode
/
lesson3-5-2_DIY1
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
0d775c2b
authored
Jan 06, 2022
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save project
parent
a2be62a2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
bug.py
bug.py
View file @
0d775c2b
...
...
@@ -46,5 +46,16 @@ bro2=["关羽",160,8.5]
bro3
=
[
"张飞"
,
166
,
8.3
]
print
(
"刘备,161,9.1
\n
关羽,160,8.5
\n
张飞,166,8.3"
)
print
(
"虽然呢,看起来关羽最年长,但是刘备的综合水平最强,
\n
所以,关羽一抱拳,甘为老二,刘备就成了大哥。结拜,大哥自然得站在C位"
)
b
=
[
'袁术'
,
'夏侯惇'
,
'曹操'
,
'关羽'
]
b
.
remove
(
"关羽"
)
print
(
'残暴不仁的董卓引起大臣们愤恨不平,曹操就想借助群雄的力量讨伐董卓。
\n
董卓也不是吃素的,收到消息就召集众将,这时,华雄自告奋勇要当先锋。
\n
董卓见华雄生得威武,便拨给他兵马,令他前去迎敌。华雄到达盟军阵前挑战,无人可敌,",b,"大惊失色。
\n
这时还是无名小卒的关羽上前请战'
)
print
(
'其实啊,在关羽出战之前,袁术说:“可惜我的大将颜良、文丑不在,不然,就不怕华雄了。'
)
a
=
[
'华雄'
]
a
.
append
(
'关羽'
)
print
(
a
,
'打架,最后关羽砍下了华雄的头'
)
c
=
[
"华雄"
]
d
=
[
'小猪佩奇'
,
'乔治'
]
c
.
extend
(
d
)
print
(
"只可惜不是"
,
c
,
"他们一起接吻"
)
# b.pop(3)
# b.pop(-1)
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