Clean code tip - Avoid using ambiguous abbreviations
Python clean code tip:
Avoid using ambiguous abbreviations
Don't try to come up with your own abbreviations. It's better for a variable to have a longer name than a confusing name.
👇
# This is bad fna = 'Bob' cre_tmstp = 1621535852 # This is good first_name = 'Bob' creation_timestamp = 1621535852