When using integer keys, they are converted to strings. Therefore: ```python mysqlitedict['1'] = 'ONE' mysqlitedict[1] = 1 ``` all refer to the same thing.