------
## 最终结论
```python
def dict_filter(input_dict, threshold):
    return {key: value for key, value in input_dict.items() if value >= threshold}
```