Created
April 9, 2021 16:16
-
-
Save Eventhisone/98d22e9d683b71d2b323aae74c0329df to your computer and use it in GitHub Desktop.
A python dictionary to convert two letter US state codes to the full state name. Also including DC, Northern Mariana Islands, Palau, Puerto Rico, the Virgin Islands, and US military base abbreviations.
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_state_abbrev = { | |
'AL': 'Alabama', | |
'AK': 'Alaska', | |
'AZ': 'Arizona', | |
'AR': 'Arkansas', | |
'CA': 'California', | |
'CO': 'Colorado', | |
'CT': 'Connecticut', | |
'DE': 'Delaware', | |
'FL': 'Florida', | |
'GA': 'Georgia', | |
'HI': 'Hawaii', | |
'ID': 'Idaho', | |
'IL': 'Illinois', | |
'IN': 'Indiana', | |
'IA': 'Iowa', | |
'KS': 'Kansas', | |
'KY': 'Kentucky', | |
'LA': 'Louisiana', | |
'ME': 'Maine', | |
'MD': 'Maryland', | |
'MA': 'Massachusetts', | |
'MI': 'Michigan', | |
'MN': 'Minnesota', | |
'MS': 'Mississippi', | |
'MO': 'Missouri', | |
'MT': 'Montana', | |
'NE': 'Nebraska', | |
'NV': 'Nevada', | |
'NH': 'New Hampshire', | |
'NJ': 'New Jersey', | |
'NM': 'New Mexico', | |
'NY': 'New York', | |
'NC': 'North Carolina', | |
'ND': 'North Dakota', | |
'OH': 'Ohio', | |
'OK': 'Oklahoma', | |
'OR': 'Oregon', | |
'PA': 'Pennsylvania', | |
'RI': 'Rhode Island', | |
'SC': 'South Carolina', | |
'SD': 'South Dakota', | |
'TN': 'Tennessee', | |
'TX': 'Texas', | |
'UT': 'Utah', | |
'VT': 'Vermont', | |
'VA': 'Virginia', | |
'WA': 'Washington', | |
'WV': 'West Virginia', | |
'WI': 'Wisconsin', | |
'WY': 'Wyoming', | |
'DC': 'District of Columbia', | |
'MP': 'Northern Mariana Islands', | |
'PW': 'Palau', | |
'PR': 'Puerto Rico', | |
'VI': 'Virgin Islands', | |
'AA': 'Armed Forces Americas (Except Canada)', | |
'AE': 'Armed Forces Africa/Canada/Europe/Middle East', | |
'AP': 'Armed Forces Pacific' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Inspired by: https://gist.github.com/rogerallen/1583593