我正在尝试:
这两个任务在Python2中似乎都是有问题的。传统上,在没有特殊字符的表中,我将使用.to_latex()
函数将DataFrame转换为LaTeX。
初始尝试:
import pandas as pd
df = pd.DataFrame({"a": [1,2,3],"b": ['abc','def','ñê']})
df.to_latex()
SyntaxError: Non-ASCII character '\xc3' in file test.py on line 2, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details