WILL GIVE BRAINLIST IF ANSWER IS RIGHT AND YOU TELL ME HOW YOU GOT YOUR ANSWER (dont copy and past from a site)
Which function allows a user to add another item to a list in Python?

a. order()
b. print()
c. sort()
d. append()

Respuesta :

Answer:

D

Explanation:

i just use python a lot :/

Answer:

D: Append()

Explanation:

You can add an item at the specified index (position) by insert() . Set the index for the first parameter and the item to be inserted for the second parameter. The beginning is 0 . For negative values, -1 means one before the end.