Variables names don't need their type
So often I see a variables type() inside of its name and it hurts me a little inside. Tell me I’m right or prove me wrong below.
Pandas DataFrames are probably the worst offender that I see
# bad sales_df = get_sales() # good sales = get_sales()
Sometimes vanilla structures too!
...