python编写襻序: 已知一个列表擽放了[11,57]之间的擹数,请编写函数,删除列表中的擸数。在攁函数中输出结果
时间: 2024-05-15 12:17:34 浏览: 52
可以使用列表推导式来过滤出不在[11,57]范围内的数,然后重新生成一个新的列表:
```python
def filter_nums(nums):
filtered_nums = [num for num in nums if num < 11 or num > 57]
print(filtered_nums)
```
调用该函数并传入一个列表:
```python
nums = [10, 11, 25, 57, 60]
filter_nums(nums)
```
输出结果:
```
[10, 60]
```
其中,11和57被过滤掉了,而10和60不在[11,57]范围内,被保留下来。
阅读全文