1. 基础题
-
已知一个数字列表,打印列表中所有的奇数
nums = [1, 23, 12, 15, 73, 78, 49] result = [x for x in nums if x % 2 != 0] print(result)
-
已知一个数字列表,打印列表中所有能被能被3整除但是不能被2整除的数
nums = [1, 23, 12, 15, 73, 78, 49] result = [x for x in nums if x % 2 != 0 and x % 3 == 0] print(result)
-
已知一个数字列表,计算所有偶数的和
nums = [1, 23, 12, 15, 73, 78, 49] result = sum([x for x in nums if x % 2 == 0]) print(result)
-
已知一个数字列表,统计列表中十位数是
1
的数的个数nums = [1, 23, 12, 15, 73, 78, 49] result = len([x for x in nums if x // 10 % 10 == 1]) print(result)
-
已知一个列表,获取列表中下标为奇数是所有元素(从0开始的下标值)
例如: list1 = [10, 20, 5, 34, 90, 8]
结果:[20, 34, 8]
nums = [1, 23, 12, 15, 73, 78, 49] print(nums[1::2])
-
已知一个数字列表,将列表中所有元素乘以2
例如: nums = [10, 3, 6, 12] 乘2后: nums = [20, 6, 12, 24]
nums = [1, 23, 12, 15, 73, 78, 49] result = [x * 2 for x in nums] print(result)
-
已知一个列表,获取列表的中心元素
例如:nums = [10, 2, 6, 12] -> 中心元素为: 2和6
nums = [10, 2, 6, 12, 10] -> 中心元素为:6
nums = [1, 23, 12, 15, 73, 78, 49] N = len(nums) if N % 2 == 0: print(nums[N // 2 - 1], nums[N // 2]) else: print(nums[N // 2])
-
已知一个列表,获取列表中所有的整型元素
例如:list1 = [10, 1.23, ‘abc’, True, 100, ‘hello’, ‘20’, 5]
结果是: [10, 100, 5]
list1 = [10, 1.23, 'abc', True, 100, 'hello', '20', 5] result = [x for x in list1 if type(x) == int] print(result)
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] new_scores = scores.copy() # scores[:] 对完整的数据进行备份 for x in new_scores: # 遍历备份数据,删除原数据,这样遍历过程中,可以保证取到原数据的每一个数据。 if x < 60: scores.remove(x) print(scores) # 通过下标遍历列表的时候,倒着取 # 9,8,7,6,5,...0 scores = [45, 60, 89, 30, 12, 59, 99, 80, 71, 66] for x in scores[::-1]: # 在删除过程中,为了不影响获取数据的位置,可以倒着取 if x < 60: scores.remove(x) print(scores)
-
已知一个列表保存了多个学生的姓名,要求去掉列表中重复的名字
例如:names = [‘小明’, ‘张三’, ‘李四’, ‘张三’, ‘张三’, ‘小明’, ‘王五’, ‘王五’]
去重后:names = [‘小明’, ‘张三’, ‘李四’, ‘王五’]
names = ['小明', '张三', '李四', '张三', '张三', '小明', '王五', '王五'] name=[] for x in names: if x not in name: name.append(x) names = name print(names)
-
已知一个数字列表,获取列表中值最大的元素 (不能使用max函数)
nums = [45, 60, 89, 30, 12, 59, 99, 80, 71, 66] m_ax = nums[0] for x in nums: if x > m_ax: m_ax = x print(m_ax)
-
已知两个有序列表(列表中的元素已经按照从小到大的方式排好序),要求合并两个列表,合并后元素还是从小到大排序
例如: 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] list3 = [] while True: a1 = list1.pop(0) a2 = list2.pop(0) if a1 < a2: list3.append(a1) list2.insert(0, a2) if a1 > a2: list3.append(a2) list1.insert(0, a1) if list1 == [] or list2 == []: list3 += list1 + list2 break print(list3)
-
已知一个有序数字列表(从小到大),输入任意一个数字,将输入的数字插入列表中,要求插入后列表仍然保持从小到大排序的关系
例如: list1 = [10, 23, 45, 67, 91] 输入: 50 -> list1 = [10, 23, 45, 50, 67, 91]
list1 = [10, 23, 45, 67, 91]
num = int(input('请输入一个整数:'))
for i in range(len(list1)):
if num < list1[i]:
list1.insert(i, num)
break
print(list1)