VSCode Data Analysis Guide
VSCode Data Analysis Guide
Make sure to check the box that says 'Add Python to PATH' during installation.
Open the terminal in VS Code (Ctrl+~) and type the following command:
import pandas as pd
df = pd.read_excel('yourfile.xlsx')
df.head()
Getting Started with VS Code for Data Analysis