一.列表 []表示列表,用','进行分隔,list有序 能够进行索引 切片 (in append extend count index insert pop remove,reverse sort copy) temp_ls = ['only', 'tom',1,'oulf',2,[1,22222,3],'tom',{'key1':'value1'}] # 取列表中的嵌套列表,方法1tyd = (temp_ls[5])print(tyd[1])# 取列表中的嵌套列表,方法2:print((tem