Commit afc34f75 by BellCodeEditor

save project

parent c824ffc6
Showing with 42 additions and 0 deletions
list=["苹果","香蕉","西瓜","香蕉","桃子","香蕉"]
list.remove("西瓜")
list.pop(0)
list.pop(-1)
print(list)
bor1="关羽"
bor2="刘备"
bor3="张飞"
bors=["刘备","关羽","张飞"]
bor1=["关羽",161,9,1]
bor2=["刘备",160,8,5]
bor3=["张飞",166,8,3]
bors[1]="刘备"
bors[0]="关羽"
print(bors)
name='刘强'
power=66
hero=['赵一',30,'丁二',37,'孙五',52,'王猛',89,'周亮',98]
for i in range(len(hero)):
if i%2==1 and hero[i]>=power:
hero.insert(i-1,name)
hero.insert(i,power)
break
print(hero[6:])
\ No newline at end of file
a=["吕布"]
b=['袁术','关孙瓒','关羽','张飞','刘备','曹操']
a.extend(b[2:5])
print(a)
\ No newline at end of file
b=['袁术','夏侯亭','曹操','关羽']
b.remove('关羽')
print(b)
a=['华雄']
a.insert(1,'关羽')
print(a)
a=['华雄']
c=['颜良','文丑']
a.extend(c)
print(a)
...@@ -5,5 +5,6 @@ while True: ...@@ -5,5 +5,6 @@ while True:
password = input("请输入密码:") password = input("请输入密码:")
if name == username and password == userpassword: if name == username and password == userpassword:
print("登录成功!") print("登录成功!")
print("用户名和密码错误!请重新输入") print("用户名和密码错误!请重新输入")
print("欢迎来到贝尔编程!") print("欢迎来到贝尔编程!")
\ No newline at end of file
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