Robotics & Artificial Intelligence

You can place an element in a list at your desired place using append() function.

Python List Manipulation

1 Like

Answer

False

Reason — The append() function adds an element only at the end of a list. To place an element at a desired position, the insert() function is used.

Answered By

1 Like


Related Questions