Popular recipes tagged "states" but not "dict"http://code.activestate.com/recipes/tags/states-dict/2016-05-09T22:24:26-07:00ActiveState Code RecipesStates to Regions (Python)
2016-05-09T22:24:26-07:00Jackson Killianhttp://code.activestate.com/recipes/users/4194060/http://code.activestate.com/recipes/580661-states-to-regions/
<p style="color: grey">
Python
recipe 580661
by <a href="/recipes/users/4194060/">Jackson Killian</a>
(<a href="/recipes/tags/dictionary/">dictionary</a>, <a href="/recipes/tags/regions/">regions</a>, <a href="/recipes/tags/states/">states</a>).
</p>
<p>Python dictionary mapping two letter state abbreviations to their respective regions of the country (i.e. Midwest, North East, etc.)
N - North East
W - West
M - Mid West
S - South
O - Other</p>
State FIPS Codes Dict (Python)
2011-07-01T17:22:36-07:00Zach Williamshttp://code.activestate.com/recipes/users/4178496/http://code.activestate.com/recipes/577775-state-fips-codes-dict/
<p style="color: grey">
Python
recipe 577775
by <a href="/recipes/users/4178496/">Zach Williams</a>
(<a href="/recipes/tags/fips/">fips</a>, <a href="/recipes/tags/fips_codes/">fips_codes</a>, <a href="/recipes/tags/state/">state</a>, <a href="/recipes/tags/states/">states</a>).
</p>
<p>Had to put state codes with their FIPS code into a dict, and took way longer than I expected. Thought someone else might benefit from this.</p>