摘要:
#列表的坑之一 list1 = ['python','java','php','c','c++','c#','ruby'] #将索引为奇数的元素删除 ['java','c','c#'] list2 = [] for item in list1: if list1.index(item) % 2 != 1: list2.pop(list1.index(item)) prin... 阅读全文
摘要:
一,元组的声明和赋值 二,元组与列表的转换 三,字符串转数组 四,总结 阅读全文