Skip to content

Instantly share code, notes, and snippets.

@yunho0130
Created January 7, 2017 04:02
Show Gist options
  • Select an option

  • Save yunho0130/5b65cb121cc69423d3348cd9fa5ec33f to your computer and use it in GitHub Desktop.

Select an option

Save yunho0130/5b65cb121cc69423d3348cd9fa5ec33f to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
"""
Created on Sat Jan 07 12:54:55 2017
@author: Yunho
"""
ab = {'홍길동':['hgdong1111@gmail.com', '010-1234-5678', '조선 개경시 일동면 11']}
print ab
print ab['맹윤호']
print ab['맹윤호'][0]
print ab['맹윤호'][1]
print ab['맹윤호'][2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment