District-Level Tables — Comprehensive demographic data including population, literacy, SC/ST, workers, religion, and housing for Maharashtra at village, town, and district levels
import pandas as pd
df = pd.read_csv("census_2011_maharashtra.csv")
print(df[["district_name", "total_population", "literacy_rate"]]
.sort_values("literacy_rate", ascending=False).head(10))| Field | Type | Description |
|---|---|---|
| state_code | integer | Census state code (27 for Maharashtra) |
| district_code | integer | Census district numeric code |
| district_name | string | Name of the district |
| total_population | integer | Total population count |
| male_population | integer | Male population count |
| female_population | integer | Female population count |
| literacy_rate | float | Percentage of literate population (age 7+) |
| sc_population | integer | Scheduled Caste population count |
| st_population | integer | Scheduled Tribe population count |