Commit 2f4f9738 by BellCodeEditor

save project

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