Created
January 7, 2017 04:02
-
-
Save yunho0130/5b65cb121cc69423d3348cd9fa5ec33f to your computer and use it in GitHub Desktop.
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
| # -*- coding: utf-8 -*- | |
| """ | |
| Created on Sat Jan 07 12:54:55 2017 | |
| @author: Yunho | |
| """ | |
| ab = {'홍길동':['[email protected]', '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