pandas.errors.CSSWarning#
- exception pandas.errors.CSSWarning[源代码][源代码]#
当转换css样式失败时,会引发警告。
这可能是因为样式没有等效值,或者是因为样式格式不正确。
示例
>>> df = pd.DataFrame({"A": [1, 1, 1]}) >>> df.style.map(lambda x: "background-color: blueGreenRed;").to_excel( ... "styled.xlsx" ... ) CSSWarning: Unhandled color format: 'blueGreenRed' >>> df.style.map(lambda x: "border: 1px solid red red;").to_excel( ... "styled.xlsx" ... ) CSSWarning: Unhandled color format: 'blueGreenRed'