题目:从列表中过滤掉数字 3。
假设我们有一个列表,其中包含一些数字,我们想要过滤掉数字 3。我们可以使用 Python 中的列表推导式来实现这个功能。
```python
numbers = [1, 2, 3, 4, 5, 3, 6, 7, 8]
filtered_numbers = [num for num in numbers if num != 3]
print(filtered_numbers)
```
输出:
```
[1, 2, 4, 5, 6, 7, 8]
```
在这个例子中,我们使用了列表推导式来创建一个新的列表,其中只包含在原始列表中不等于数字 3 的元素。结果是一个新的列表,其中过滤掉了数字 3。