Forked from JeffPaine/us_state_abbreviations.py
Last active
November 12, 2019 01:17
-
-
Save SHi-ON/ffbaf1d709aa5f49dbfa177a3203ad18 to your computer and use it in GitHub Desktop.
A python list of all US states abbreviations. Alphabetically sorted!
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
# alphabetically sorted | |
# 50 states + D.C = 51 | |
STATES = ["AK", "AL", "AR", "AZ", "CA", "CO", "CT", "DC", "DE", "FL", | |
"GA", "HI", "IA", "ID", "IL", "IN", "KS", "KY", "LA", "MA", | |
"MD", "ME", "MI", "MN", "MO", "MS", "MT", "NC", "ND", "NE", | |
"NH", "NJ", "NM", "NV", "NY", "OH", "OK", "OR", "PA", "RI", | |
"SC", "SD", "TN", "TX", "UT", "VA", "VT", "WA", "WI", "WV", | |
"WY"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks