Commit d1c89c12 by BellCodeEditor

auto save

parent bad6ccfb
Showing with 33 additions and 2 deletions
c:\Users\Administrator\Desktop\VIP杨瑞.txt
\ No newline at end of file
a=[]
while 1:
print('1查看,2加入,3删除,4修改')
mmm=input()
if mmm=='1':
print(a)
elif mmm=='2':
print('加入哪个?')
ccc=input()
a.append(ccc)
elif mmm=='3':
ttt=input('删除哪个?')
if ttt not in a:
print('没有')
else:
a.remove(ttt)
elif mmm=='4':
yyy=input('改变数字')
if yyy not in a:
print('没有')
else:
lll=input('修改成')
a[a.index(yyy)]=lll
else:
print('没有')
\ No newline at end of file
scores=[93,91,61,85,79,94,92,74,86,83,97,89,65,94,85,100,99,78,71,99,77,93,68,88,76,76,74,60,90,69,72,90,78,96,83,80,72,82,71,88,80,99,78,95,65,68,83,91,99,88,78]
k=101
for i in range(0,101):
if i not in scores:
k=k-1
print(k)
\ 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