Putting type information in a variable name =========================================== Python is a duck-typed language. Just because a variable is described as an integer does not mean that it actually is an integer. This can be very dangerous for any programmer who acts on the variable assuming that it is an integer. Note that the practice of including type notation in variable names is also called Hungarian Notation. Anti-pattern ------------ The code below demonstrates the dangers of variables whose names include type notation. Just because a variable is called ``n_int`` does not mean that the variable is actually an integer. .. code:: python n_int = "Hello, World!" # mistakenly assuming that n_int is a number 4 / n_int Best practice ------------- Remove type notation .................... Although the modifed code below does not fix the underlying problem of attempting to divide a number by a string, the code is generally less misleading, because there is no misleading description in the variable name ``n`` that ``n`` is a number. .. code:: python n = "Hello, World!" # still a problem, but less misleading now 4 / n References ---------- - `Stack Overflow - Hungarian Notation `_