摘要: 一.for 循环l=['a','b','c']# print(len(l))# i=0# while i<len(l):# print(l[i])# i+=1# l=['a','b','c']# for item in l: #item='a'# print(item)# dic={'x':111, 阅读全文