📌  相关文章
📜  如何检查 pandas 列中的混合类型 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:09.558000             🧑  作者: Mango

代码示例1
if mixed_dtypes := {c: dtype for c in df.columns if (dtype := pd.api.types.infer_dtype(df[c])).startswith("mixed")}:
    raise TypeError(f"Dataframe has one more mixed dtypes: {mixed_dtypes}")