# 将列表转化为元组lst=[11,22,33]t=tuple(lst)print(t,type(t))# 打印结果:(11, 22, 33)tu=(11, 22, 33)l=list(tu)print(l,type(l))# 打印结果:[11, 22, 33]
本文共 208 字,大约阅读时间需要 1 分钟。
# 将列表转化为元组lst=[11,22,33]t=tuple(lst)print(t,type(t))# 打印结果:(11, 22, 33)tu=(11, 22, 33)l=list(tu)print(l,type(l))# 打印结果:[11, 22, 33]
转载于:https://www.cnblogs.com/apollo1616/p/9776616.html