To Add A New Element To A List We Use Which Command #354
To add a new element to a list we use which command?
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Python Lists - Python Lists - Quiz No.2.
To add a new element to a list we use which command?
list1.add(5)
list1.append(5)
list1.addLast(5)
list1.addEnd(5)