1 2 3 4 5 6 7 | # # µû¶óÇÏ¸ç ¹è¿ì´Â ÆÄÀ̽ã°ú µ¥ÀÌÅÍ°úÇÐ(»ý´ÉÃâÆÇ»ç 2020) # 8.2 µñ¼Å³Ê¸®ÀÇ ±â´ÉÀ» ¾Ë¾Æº¸ÀÚ, 201ÂÊ # person_dic = {'Last': 'È«', 'First': '±æµ¿', 'Company': 'â¿ø´ëÇб³'} for key, value in person_dic.items(): print( key,':', value) | cs |