简体   繁体   中英

Pandas doesn't work in Visual Studio Code

I have a simple code:

import pandas as pd
data = pd.read_csv("data_1.csv")
data.describe()

Problem is that when I run the code in VS Code I don't get any output, but when I run it in cmd everything works fine. What might be the problem?

Please try this step:

import pandas as pd
data=pd.read_csv("data_1.csv")
data.describe()
print(data.describe())

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM