Computer Science

Find the errors:

L1 = [1, 11, 21, 31]
An = L1.remove(41)

Python List Manipulation

15 Likes

Answer

L1.remove(41) will cause an error as 41 is not present in L1.

Answered By

6 Likes


Related Questions