51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#新元素
lua 删除table元素
tab1={key1="val1",key2="val2","val3"}fork,vinpairs(tab1)doprint(k.."-"..v)endprint("after")tab1.key1=nilfork,vinpairs(tab1)doprint(k.."-"..v)end输出:1-val3k...
代码星球
·
2020-08-09
lua
删除
table
元素
python 列表元素统计出现的次数并输出字典
importcollectionsmy_list=[10,10,10,10,20,20,20,20,40,40,50,50,30]print("OriginalList:",my_list)ctr=collections.Counter(my_list)print("Frequencyoftheelemen...
代码星球
·
2020-08-09
python
列表
元素
统计
出现
python 列表元素的筛选
color=['Red','Green','White','Black','Pink','Yellow']color=[xfor(i,x)inenumerate(color)ifinotin(0,4,5)]print(color) ...
代码星球
·
2020-08-09
python
列表
元素
筛选
python 输出所有列表元素的乘积
defmultiply_list(items):tot=1forxinitems:tot*=xreturntotprint(multiply_list([1,2,-8])) ...
代码星球
·
2020-08-09
python
输出
所有
列表
元素
python 获取列表大于指定长度的元素
deflong_words(n,str):word_len=[]txt=str.split("")forxintxt:iflen(x)>n:word_len.append(x)returnword_lenprint(long_words(3,"Thequickbrownfoxjumpsoverthel...
代码星球
·
2020-08-09
python
获取
列表
大于
指定
python 判断列表字符串元素首尾字符是否相同
defmatch_words(words):ctr=0forwordinwords:iflen(word)>1andword[0]==word[-1]:ctr+=1returnctrprint(match_words(['abc','xyz','aba','122771'])) ...
代码星球
·
2020-08-09
python
判断
列表
字符串
元素
python 通过列表元素值截取列表并获取长度
defcount_range_in_list(li,min,max):ctr=0forxinli:ifmin<=x<=max:ctr+=1returnctrlist1=[10,20,30,40,40,40,70,80,99]print(count_range_in_list(list1,40,1...
代码星球
·
2020-08-09
列表
python
通过
元素
截取
python 判断两个列表是否有公共元素
defcommon_data(list1,list2):result=Falseforxinlist1:foryinlist2:ifx==y:result=Truereturnresultprint(common_data([1,2,3,4,5],[5,6,7,8,9]))print(common_data...
代码星球
·
2020-08-09
python
判断
两个
列表
是否
python 列表字符串元素乱序
fromrandomimportshufflecolor=['1','2','3','4','5']shuffle(color)print(color) ...
代码星球
·
2020-08-09
python
列表
字符串
元素
乱序
python 集合从头部删除元素
num_set=set([0,1,3,4,5])num_set.pop()print(num_set)num_set.pop()print(num_set) ...
代码星球
·
2020-08-09
python
集合
头部
删除
元素
python 集合删除元素
#Createanewsetnum_set=set([0,1,2,3,4,5])#Discardnumber4num_set.discard(4)print(num_set) ...
代码星球
·
2020-08-09
python
集合
删除
元素
python 集合元素添加
#Anewemptysetcolor_set=set()color_set.add("Red")print(color_set)#Addmultipleitemscolor_set.update(["blue","blue","Green"])print(color_set) ...
代码星球
·
2020-08-09
python
集合
元素
添加
python 元组元素反转
#createatuplex=("w3resource")#Reversedthetupley=reversed(x)print(tuple(y))#createanothertuplex=(5,10,15,20)#Reversedthetupley=reversed(x)print(tuple(y))&n...
代码星球
·
2020-08-09
python
元组
元素
反转
python 删除元组元素
#createatupletuplex="w","j","c","e"print(tuplex)#tuplesareimmutable,soyoucannotremoveelements#usingmergeoftupleswiththe+operatoryoucanremoveanitemanditwil...
代码星球
·
2020-08-09
python
删除
元组
元素
python 元组元素计数
#createatupletuplex=2,4,5,6,2,3,4,4,7print(tuplex)#returnthenumberoftimesitappearsinthetuple.count=tuplex.count(4)print(count) ...
代码星球
·
2020-08-09
python
元组
元素
计数
首页
上一页
...
24
25
26
27
28
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他