This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| US Census Race and Hispanic Origin Iteration Codes | |
| """ | |
| # Dictionary mapping iteration codes to population descriptions | |
| code_to_population = { | |
| # Total Population | |
| "001": "Total Population", | |
| # Race alone |
OlderNewer