Primary
sequence.append() ⚬|Documentation|1st|20251021164346-00-⌔
Built-in Types — Python 3 documentation#sequence.append
sequence.append(value,/)Append value to the end of the sequence. This is equivalent to writing
seq[len(seq):len(seq)] = [value].Printed 2026-06-28.
Link to original
Secondary
• • •