KnowledgeBoat Logo
|

Robotics & Artificial Intelligence

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

Python List Manipulation

2 Likes

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

3 Likes


Related Questions