Commit 0d775c2b by BellCodeEditor

save project

parent a2be62a2
Showing with 13 additions and 2 deletions
......@@ -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)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment