Python列表练习题
1. 基础题
-
已知一个数字列表,打印列表中所有的奇数
list1 = [11, 53, 40, 45, 27, 16, 28, 99] list = [] for x in list1: if x % 2 != 0: # if x % 2 == 1: list.append(x) print(list)
-
已知一个数字列表,打印列表中所有能被能被3整除但是不能被2整除的数
list1 = [11, 53, 40, 45, 27, 16, 28, 99] list = [] for x in list1: if x % 3 == 0 and x % 2 != 0: list.append(x) print(list)
-
已知一个数字列表,计算所有偶数的和
list1 = [11, 53, 40, 45, 27, 16, 28, 99] for x in list1: if x % 2 == 0: list.append(x) print(sum(list))
-
已知一个数字列表,统计列表中十位数是
1
的数的个数list1 = [10, 20, 5, 34, 90, 8] count = 0 for x in nums: if x // 10 % 10 == 1: count +=1 print(count)
-
已知一个列表,获取列表中下标为奇数是所有元素(从0开始的下标值)
例如: list1 = [10, 20, 5, 34, 90, 8]
结果:[20, 34, 8]
list1 = [10, 20, 5, 34, 90, 8] list = [] for index in range(len(list1)): s = list1[index] if index % 2 != 0: list.append(s) print(list) # nums = [10, 20, 5, 34, 90, 8] for index in range(1,len(nums),2): print(nums(index))
-
已知一个数字列表,将列表中所有元素乘以2
例如: nums = [10, 3, 6, 12] 乘2后: nums = [20, 6, 12, 24]
#方法1:不改原来列表中的值 nums = [10, 3, 6, 12] list1 = [] for x in nums: list1.append(x*2) print(list1) #方法2:改原来列表中的值 nums = [10, 3, 6, 12] #列表【下标】 = 值 for index in range(len(nums)): nums[index] *= 2 # nums[index] = nums[index]* 2 print(nums)
-
已知一个列表,获取列表的中心元素
例如:nums = [10, 2, 6, 12] -> 中心元素为: 2和6
nums = [10, 2, 6, 12, 10] -> 中心元素为:6
nums = [10, 2, 6, 12] count = len(nums) if count % 2 == 0: print(nums[count//2-1], nums[count//2]) else: print(nums[count//2])
2. 进阶题
-
定义一个列表保存多个学生的分数,删除列表中所以低于60分的值
例如: scores = [45, 60, 89, 30, 12, 59, 99, 80, 71, 66] 删除后: scores = [60, 89, 99, 80, 71, 66]
scores = [45, 60, 89, 30, 12, 59, 99, 80, 71, 66] for x in scores: if x < 60: scores.remove(x) print(scores) # 产生问题的原因:遍历删除获取数据的数据,数据不能全部取得。 # 方法一 scores = [45, 60, 89, 30, 12, 59, 99, 80, 71, 66] new_scores = [] for x in scores: if x >= 60: new_scores.append(x) print(new_scores) # 方法二 scores = [45, 60, 89, 30, 12, 59, 99, 80, 71, 66] new_scores = scores.copy() # 备份scores * 1 for x in new_scores: if x < 60: scores.remove(x) print(scores) # 方法三:倒着取 scores = [45, 60, 89, 30, 12, 59, 99, 80, 71, 66] for x in range(len(scores)-1, -1,-1): if scores[x] < 60: del scores[x] print(scores)
-
已知一个列表保存了多个学生的姓名,要求去掉列表中重复的名字
例如:names = [‘小明’, ‘张三’, ‘李四’, ‘张三’, ‘张三’, ‘小明’, ‘王五’, ‘王五’]
去重后:names = [‘小明’, ‘张三’, ‘李四’, ‘王五’]
# 方法一: names = ['小明', '张三', '李四', '张三', '张三', '小明', '王五', '王五'] new_names = [] for x in names: if x not in new_names: new_names.append(x) print(new_names) # 方法二 names = ['小明', '张三', '李四', '张三', '张三', '小明', '王五', '王五'] count = len(names) # 循环次数和列表元素一样 for x in range(count): name = names.pop(0) if name not in names: names.append(name) print(names)
-
已知一个数字列表,获取列表中值最大的元素 (不能使用max函数)
scores = [45, 60, 89, 30, 12, 59, 99, 80, 71, 66] max1 = scores[0] # 定义一个变量,从第一个值开始取值 for x in scores: if x > max1: max1 = x print(max1)
-
已知两个有序列表(列表中的元素已经按照从小到大的方式排好序),要求合并两个列表,合并后元素还是从小到大排序
例如: list1 = [10, 23, 39, 41, 52, 55, 80] list2 = [9, 38, 55, 70]
合并后的结果: [9, 10, 23, 38, 39, 41, 52, 55, 55, 70, 80]
list1 = [10, 23, 39, 41, 52, 55, 80] list2 = [9, 38, 55, 70] # 方法1 print(sorted(list1 + list2)) # 方法2 # 创建一个新列表[] list1 = [10, 23, 39, 41, 52, 55, 80] list2 = [9, 38, 55, 70] list3 = [] while True: a1 = list1.pop(0) a2 = list2.pop(0) if a1 < a2: list3.append(a1) list2.insert(0, a2) else: list3.append(a2) list2.insert(0, a2) if list1 == [] or list2 == []: break list3 += list1 + list2 print(list3)
-
已知一个有序数字列表(从小到大),输入任意一个数字,将输入的数字插入列表中,要求插入后列表仍然保持从小到大排序的关系文章来源:https://www.toymoban.com/news/detail-743483.html
例如: list1 = [10, 23, 45, 67, 91] 输入: 50 -> list1 = [10, 23, 45, 50, 67, 91]文章来源地址https://www.toymoban.com/news/detail-743483.html
list1 = [10, 23, 45, 67, 91]
num = int(input("请输入一个整数:"))
if num >= list1[-1]:
list1.append(num)
else:
for x in range(len(list1)):
if list1[x] > num:
list1.insert(x, num)
break
print(list1)
到了这里,关于【练习题】python列表的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!