How to append another list at the end of the list
Tue Mar 31 2020 05:18:11 GMT+0000 (UTC)
Saved by @GoByte #python #python #extendfunction
Python list extend() is an inbuilt function that adds the specified list elements (or any iterable) to the end of the current list. The extend() extends the list by adding all items of the list (passed as an argument) to an end.
Comments