Commit ba50920c by BellCodeEditor

save project

parent b5e2b02d
Showing with 11 additions and 0 deletions
tuple1=(100,200)
x,y=tuple1
print("x的值为:",x)
print("y的值为:",y)
list1=[100,200,300]
a,b,c=list1
print("a的值为:",a)
print("b的值为:",b)
print("c的值为:",c)
\ 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