Commit 2f4f9738 by BellCodeEditor

save project

parent b94e5a42
Showing with 18 additions and 12 deletions
a=["刘","161","9.1"] # a=["刘","161","9.1"]
b=["关","160","8.5"] # b=["关","160","8.5"]
c=["张","166","8.3"] # c=["张","166","8.3"]
print(a,b,c) # print(a,b,c)
f=['w',"e"] # f=['w',"e"]
# f.append("t") # # f.append("t")
# # print(f)
# # f.insert(1,t)
# # print(f)
# e=['1','4']
# f.extend(e)
# print(f) # print(f)
# f.insert(1,t) a=[1,3,5,7,9]
# print(f) s=a[1:3]
e=['1','4'] print(s)
f.extend(e) b=[2]
print(f) a.extend(b)
\ No newline at end of file print(a)
\ 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