audio_left_side_dic = {}
R2k=raw_input("What was the R lower limit decibel threshold at 2k Hz. frequency?")
print "Right side decibel threshold at 2k Hz is %r" % (R2k)
audio_right_side_dic['2000']='R2k'
R3k=raw_input("What was the R lower limit decibel threshold at 3k Hz. frequency?")
print "Right side decibel threshold at 3k Hz is %r" % (R3k)
audio_right_side_dic['3000']='R3k'
print(list(audio_right_side_dic.items()))
list(audio_right_side_dic.items())
L2k=raw_input("What was the L lower limit decibel threshold at 2k frequency?")
print "Right side decibel threshold at 2k Hz is %r" % (L2k)
audio_left_side_dic['2000']=L2k