在生成第三个表格时报错是怎么回事?

来源:5-2 pandas基础数据结构

慕先生4075859

2019-06-08 20:52

 df=pd.DataFrame({"A":1,"B":pd.Timestamp("20170301","C":pd.Series(1,index=list(range(4)),dtype="float32"),"D":np.array([3]*4,dtype="float32"),"E":pd.Categorical(["police","student","teacher","doctor"])})                                                       ^

SyntaxError: invalid syntax

"C":pd.Series(1,index=list(range(4)),dtype="float32"),一段显示“variables annotation cannot be combined with tuple unpacking”

写回答 关注

1回答

  • qq_金风未动蝉先觉_0
    2019-09-11 14:23:11

    建议在pycharm里编写,方便debug


    很明显你的这段代码是在这里有错:

    B":pd.Timestamp("20170301","C":

    应该修改为:

    B":pd.Timestamp("20170301"),"C":

    建议用pycharm编写,方便debug

    这一段正确的代码应该是这样的:

    df = pd.DataFrame({ "A": 1,
                        "B": pd.Timestamp("20170301"),
                        "C": pd.Series(1, index=list(range(4)), dtype="float"),
                        "D": np.array([3] * 4, dtype="float32"),
                        "E": pd.Categorical(["police", "student", "teacher", "doctor"])})


Python数据分析-基础技术篇

使用Python进行数据分析的基础模块简介

93614 学习 · 277 问题

查看课程

相似问题