Use python to read the column data specified by excel

You can use the Pandas library in Python to help you read the column data specified by Excel. You can use the pandas.read_excel() function and specify the column name to read: df = pandas.read_excel(filename, usecols=['column name'])

Guess you like

Origin blog.csdn.net/weixin_35749786/article/details/129552197