Built-in list functions: is there an append
Built-in list functions: is there an append
Can I append to an existing list? E.g. if contacts is a list of Contact records:
contacts = contacts + new_contact
or
contacts.append(new_contact)
Thanks,
Kevin