pandas range of values in column code example
Example 1: python - calculate the value range on a df
df.describe(include='int64')
Example 2: pandas from range of columns
df1.loc['d':, 'A':'C']
df.describe(include='int64')
df1.loc['d':, 'A':'C']