可以执行的
应该是因为你引入了两个DataFrame, 导致pandas的DataFrame 被覆盖了
一般引用pandas的DataFrame 我们不会直接引入DataFrame
而是 import pandas as pd
然后pd.DataFrame(data)
这样就可以了。