标签:count color 次数 sep -- code 一个 strong index
在不使用 count() 的情况下,计算列表中所有字符出现的次数:
l1 = [1,2,2,2,3,4,55,66] # 定义一个列表 l2 = [] # 再定义一个空列表 for i in l1 : if i not in l2 : # 如果i不在l2内,则自动添加 l2.append(i) l2.append(str(1)) else : # 如果存在,则计数+1 l2[l2.index(i) + 1] = str(int(l2[l2.index(i) + 1]) + 1) # continue for i in range(0,len(l2),2): # 循环输出l2 print(l2[i],l2[i+1],sep=" --- ") # 1 --- 1 # 2 --- 3 # 3 --- 1 # 4 --- 1 # 55 --- 1 # 66 --- 1
标签:count color 次数 sep -- code 一个 strong index
原文地址:https://www.cnblogs.com/mamouren/p/13295237.html