Skip to content

Instantly share code, notes, and snippets.

@SHi-ON
Forked from JeffPaine/us_state_abbreviations.py
Last active November 12, 2019 01:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SHi-ON/ffbaf1d709aa5f49dbfa177a3203ad18 to your computer and use it in GitHub Desktop.
Save SHi-ON/ffbaf1d709aa5f49dbfa177a3203ad18 to your computer and use it in GitHub Desktop.
A python list of all US states abbreviations. Alphabetically sorted!
# 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"]
@jtgibson91
Copy link

thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment