1.创建一个列表,列表中有10个数, 保证列表中元素的顺序,对列表进行排重,并对列表使用进行降序排序
例如:随机生成了[70, 88, 91, 70, 107, 234, 91, 177, 282, 197]
— 去重之后 [70, 88, 91, 107, 234, 177, 282, 197]
---- 降序排序 [282, 234, 197, 177, 107, 91, 88, 70]
nums = [randint(0, 10) for _ in range(10)]
print(nums)
new_nums = []
for x in nums:
if x not in new_nums:
new_nums.append(x)
print(new_nums)
new_nums.sort(reverse=True)
print(new_nums)
2.利用列表推导式, 完成以下需求
a. 生成一个存放1-100中个位数为3的数据列表
结果为 [3, 13, 23, 33, 43, 53, 63, 73, 83, 93]
result = [x for x in range(3, 100, 10)]
print(result)
b. 利用列表推到是将 列表中的整数提取出来
例如:[True, 17, “hello”, “bye”, 98, 34, 21] — [17, 98, 34, 21]
list1 = [True, 17, "hello", "bye", 98, 34, 21]
result = [x for x in list1 if type(x) == int]
print(result)
c.利用列表推导式 存放指定列表中字符串的长度
例如 [“good”, “nice”, “see you”, “bye”] — [4, 4, 7, 3]
strs = ["good", "nice", "see you", "bye"]
result = [len(x) for x in strs]
print(result) # [4, 4, 7, 3]
3.已知代码如下,请回答出各个print的结果 并说明原因
nums = [17, 39, 28, 51]
nums2 = nums
nums2.pop()
print(len(nums)) # 结果为 3,因为nums把内存地址和nums关联了,所以nums1、nums2公用同一个内存地址及数据,当nums2减少一个元素时,nums1也就减少了
numlist = [17, 22, 39, 58, [55, 43]]
nums3 = numlist.copy()
print(numlist is nums3) # 结果为 False,因为 is 是判断两个数据的地址是否相等,nums开辟了新的空间复制numlist的数据,两者的内存地址不同
numlist[-1][0] = 99
print(nums3) # num3会不会发生变化
不会发生变化,原因同上
4.定义一个列表,在列表中保存6个学生的信息(学生信息中包括: 姓名、年龄、成绩(单科)、电话、性别(男、女、不明) )
a.统计不及格学生的个数
b.打印不及格学生的名字和对应的成绩
c.统计未成年学生的个数
d.打印手机尾号是8的学生的名字
e.打印最高分和对应的学生的名
f.删除性别不明的所有学生
g.将列表按学生成绩从大到小排序
student_list = [
{'name': 'stu1', 'age': 18, 'score': 98, 'tel': '1827238272', 'gender': '男'},
{'name': 'stu2', 'age': 16, 'score': 98, 'tel': '1827238271', 'gender': '女'},
{'name': 'stu3', 'age': 29, 'score': 56, 'tel': '1827238275', 'gender': '男'},
{'name': 'stu4', 'age': 13, 'score': 89, 'tel': '1827238278', 'gender': '不明'},
{'name': 'stu5', 'age': 22, 'score': 34, 'tel': '1827238275', 'gender': '不明'},
{'name': 'stu6', 'age': 26, 'score': 77, 'tel': '1827238278', 'gender': '男'}
]
# a.统计不及格学生的个数
# b.打印不及格学生的名字和对应的成绩
count = 0
for stu in student_list:
score = stu['score']
if score < 60:
count += 1
print(stu['name'], score)
print('不及格学生的个数:', count)
# c.统计未成年学生的个数
count = 0
for stu in student_list:
if stu['age'] < 18:
count += 1
print('未成年学生的个数:', count)
# d.打印手机尾号是8的学生的名字
print('============手机尾号是8=============')
for stu in student_list:
tel = stu['tel']
# 获取手机尾号方法一:
# if tel[-1] == '8':
# print(stu['name'])
# 获取手机尾号方法二:
if int(tel) % 10 == 8:
print(stu['name'])
# e.打印最高分和对应的学生的名字
# 情况一:只有一个最高分
# best_stu = student_list[0] # 假设第一个学生的分数最高
# for stu in student_list:
# if stu['score'] > best_stu['score']:
# best_stu = stu
# print(best_stu['name'])
# 情况二:最高分有多个
# print([stu['score'] for stu in student_list])
max_score = max([stu['score'] for stu in student_list])
names = [stu['name'] for stu in student_list if stu['score'] == max_score]
print(names) # ['stu1', 'stu2']
# f.删除性别不明的所有学生
new_student_list = [stu for stu in student_list if stu['gender'] != '不明']
print(new_student_list)
# *g.将列表按学生成绩从大到小排序
student_list.sort(key=lambda item: item['score'], reverse=True)
print(student_list)