diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 72fc099f57599..d38636ca06ffc 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -4616,6 +4616,8 @@ def query(self, expr: str, *, inplace: bool = False, **kwargs) -> DataFrame | No 0 1 10 10 1 2 8 9 """ + if self.columns.duplicated().any(): + raise ValueError("DataFrame contains duplicate column names.") inplace = validate_bool_kwarg(inplace, "inplace") if not isinstance(expr, str): msg = f"expr must be a string to be evaluated, {type(expr)} given"