Commit f32a1896 by BellCodeEditor

auto save

parent 502609b5
Showing with 8 additions and 0 deletions
args=["张三","33","李四","55","王五","88"]#列表
lists={"张三":33,"李四":55,"王五":88} #字典
#获取修改后李四的臂力值
args[3]=60
lists["李四"]=60
print(args[3])
print(lists["李四"])
\ 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