Commit 758f4e1e by BellCodeEditor

save project

parent 172ee8c9
Showing with 12 additions and 14 deletions
score={'小雅':100,'小宇':88,
k=input('姓名')
v=input('最新成绩')
if k in score:
if int(v)>score[k]:
score[k]=int(v)
print(k+'同学'+v+'分')
else:
print(k+'同学'没有)
else:
score[k]=int(v)
print(k+'同学'+v+'相同')
\ No newline at end of file
import jieba
text="他来自家里蹲大学"
txt_list=jieba.lcut(text)
print(txt_list)
\ No newline at end of file
TNT=[12,51,15,4,5]
={}
TNT.insert(0,'5')
print(TNT)
TNT.insert(4,float(5.2))
print(TNT)
\ 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