I have a list of strings:
list = ['FL9000', 'OV255', 'MK0029']
. I want to create a dictionary by taking the first two characters from each string element for the key, and append the element itself for a value.
My result should be something like:
dict = {'FL': 'FL9000', 'OV': 'OV255'}
and so on.