|
|
|
|
|
by lordmauve
4405 days ago
|
|
Don't make it a tuple. A tuple indicates heterogenous data (a record), while a list indicates a sequence of data. If nothing else, use lists because the syntax means it stays as a list even if you someday remove all but one option and forget to leave a comma, eg. REASONS = [
'leaves on the line'
]
vs REASONS = (
'leaves on the line'
)
|
|