How To Become a 10x Data Scientist, part 2

@machinelearnbot 

Being consistent with your code style is just as important as following naming conventions. To gain some basic style points you should stick to the same case, don't mix camel and snake case together in the same script. It quickly becomes hard to read and navigate your code. Another way you should be consistent is to stick with the same method of accomplishing a task. For instance if you want to remove duplicates from a dictionary and you need to do it in a couple of spots in your code, don't get creative and use a different way to do it just because you saw it on Stack Overflow.