标签:href app amp col lis str 集合 style 重复
1:python里如何实现tuple和list的转化?
list(列表):list是一种有序的集合,可以随时添加和删除其中的元素。
tuple(元祖):tuple和list非常类似,但是tuple一旦初始化就不能修改。
#以list作为参道数版将tuple类初始化,将权返回tuple类型 uple([1,2,3]) #list转换为tuple #以tuple作为参数将list类初始化,将返回list类型 list((1,2,3)) #tuple转换为list
str转list list = list(str)
list转str str= ‘‘.join(list)
2:看代码写结果
import copy a = [1,2,4,5,[‘b‘,‘c‘]] b = a c = copy.copy(a) d = copy.deepcopy(a) a.append(5) a[4].append(‘d‘) print(b) # [1,2,4,5,[‘b‘,‘c‘,‘d‘],5] print(c) # [1,2,4,5,[‘b‘,‘c‘,‘d‘]] print(a) # [1,2,4,5,[‘b‘,‘c‘,‘d‘],5]
3:如何删除列表中重复的值?
list(set(list))
标签:href app amp col lis str 集合 style 重复
原文地址:https://www.cnblogs.com/ljy123/p/12815594.html