Skip to content

Instantly share code, notes, and snippets.

@sudosanet
Created November 26, 2019 13:42
Show Gist options
  • Save sudosanet/3563788acc8741b0ffbd9bb4774bc695 to your computer and use it in GitHub Desktop.
Save sudosanet/3563788acc8741b0ffbd9bb4774bc695 to your computer and use it in GitHub Desktop.
def get_phone(s):
if s == "八王子":
return "042-637-2111"
if s == "蒲田":
return "03-6424-2111"
def get_school(s):
if s == "八王子":
tmp = set(["BS","CS","ES","MS"])
return tmp
if s == "蒲田":
tmp2 = set(["DS","HS"])
return tmp2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment