Identifiers
Syntax for an identifier: consists of letters, digits and underscore (_), but may not begin with digit.
Avoid naming an identifier starting with underscore (_).
Choose appropriate identifiers for variable names and function names. Compare these identifiers for a particular variable:
sum_of_list_of_numbers
s
sum