------
## 最终结论
```python
def filter_oddnumbers(numbers):
    return list(filter(lambda x: x % 2 != 0, numbers))
```