Python uses pandas to read Excel files, how to read only a few columns?

I want to use Python"s pandas package to read some columns of data from Excel, but not all of them. How can I read them?
only knows how to use skiprows=? To read specific rows, but do not know how specific columns are read

Feb.28,2021

usecols,nrows learn about

Menu