Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有学校项目要在周日之前提交,但这里有问题,CSV 文件
import pandas as PD DF=PD.read_csv('C:\New folder\Book4.csv') print(DF)
这不是整个代码,但这部分是唯一的问题。我总共有 4 个 CSV 文件,只有这个文件由于某种原因没有打印中间列。我在尝试打印第二个 csv 文件之前遇到了这个问题,但是在我添加了第三个和第四个(这个)CSV 文件之后才正确打印,这个问题出现了, 请帮忙。
此 CSV 中的列可能太多。您可以设置要打印的列数:
pd.set_option('display.max_columns',40)
上面的代码会将最大值增加到 40 列