Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. can_province_abbrev = {
  2. 'Alberta': 'AB',
  3. 'British Columbia': 'BC',
  4. 'Manitoba': 'MB',
  5. 'New Brunswick': 'NB',
  6. 'Newfoundland and Labrador': 'NL',
  7. 'Northwest Territories': 'NT',
  8. 'Nova Scotia': 'NS',
  9. 'Nunavut': 'NU',
  10. 'Ontario': 'ON',
  11. 'Prince Edward Island': 'PE',
  12. 'Quebec': 'QC',
  13. 'Saskatchewan': 'SK',
  14. 'Yukon': 'YT'
  15. }
  16.  
  17. can_province_names = {
  18. 'AB': 'Alberta',
  19. 'BC': 'British Columbia',
  20. 'MB': 'Manitoba',
  21. 'NB': 'New Brunswick',
  22. 'NL': 'Newfoundland and Labrador',
  23. 'NS': 'Nova Scotia',
  24. 'NT': 'Northwest Territories',
  25. 'NU': 'Nunavut',
  26. 'ON': 'Ontario',
  27. 'PE': 'Prince Edward Island',
  28. 'QC': 'Quebec',
  29. 'SK': 'Saskatchewan',
  30. 'YT': 'Yukon'
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement