[Python-Basic] Dictionary Data Type - 3
# Dictionary is save each data using by pair of key and value # Make dictionary type object using by '{' or '}' keyword current_price = {} # Check data type using 'type()' function. print(type(current_price)) # Add new item with key current_price['naver'] = 1 # Check result print(current_price) # Add another item with key current_price['DaumKAKAO'] = 2 # Check result print(current_price) # Lengt..