print([i for i in list3 if not (type(i) == int and i % 10 < 5)]) 1. 2. e. 利用列表推导式获取元素是元组的列表中每个元组的最后一个元素 例如:[(10, 20, 30), ('abc', 'hello'), (1, 2, 3.4), (True, False)] --- [30, 'hello', 3.4, False] 1. nums = [(10, 20...