Commit 3f7a08b4 by BellCodeEditor

save project

parent ce4b3a36
Showing with 10 additions and 12 deletions
a=input('你叫啥名字?')
b=int(input('你臂力值多少啊? '))
c=['高鹏超',80,'郭强',90,'董文轩',100]
for i in range(len(c)):
if i%2==1 and c[i]>=b:
c.insert(i-1,a)
c.insert(i,b)
break
print(c[-6:])
c=['羽','分','好','是']
c.remove('羽')
print(c)
c.append('啊')
print(c)
a=c[2:]
e=c[:2]
print(a)
print(e)
\ 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