how to get sting as it is from excel file in python while trying to import in the dataframe code example
Example 1: pandas read excel
import pandas as pd
pd.read_excel('tmp.xlsx’, sheet_name='Sheet1')
Example 2: pandas read excel
import pandas as pd
pd.read_excel('tmp.xlsx', index_col=0)