找出 Polars 过滤器里的 bug

来自 Polars
Python 3.14 入门 4分钟 找出 1处问题

找出这段生成的过滤代码为什么无法组合两个 Polars 谓词。

Python
import polars as pl

def select_paid(orders):
    return orders.filter(
        pl.col("paid") and (pl.col("amount") > 0)
    )
在试验场中打开
报告错误