When initializing a dictionary with d = {} Pycharm\'s code inspector generates a warning, saying
d = {}
This dictionary creation could be rewrit
mydict = { a: 5, b:z+c/2 }
The dictionary could have been created directly without initialising them first and then reassigning new values.