Commit a0577f48 by BellCodeEditor

save project

parent e86cad72
Showing with 18 additions and 0 deletions
import os
path = 'C:\\Users\\user\\Desktop\\test'
filelist = os.listdir(path)
print(filelist)
\ No newline at end of file
tuple = (100,200)
tuple = (100,200)
x,y=tuple
print("x的值为",x)
print("y的值为“,y)
list1 = [100,200,300]
a,b,c = list1
print("a的值为"a)
print("b的值为"b)
print("b的值为"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