1. dict represents a dictionary
use dict.get('e',0) instead of dict['e'] to get the value of 'e' if you are not sure that 'e' is included in dict
1. dict represents a dictionary
use dict.get('e',0) instead of dict['e'] to get the value of 'e' if you are not sure that 'e' is included in dict