All problems
EasyLists
Append + insert
Start with [1, 2, 3]. Append 4 to the end and insert 0 at the front.
- #lists
- #append
Sample input
[1, 2, 3]
Sample output
[0, 1, 2, 3, 4]
list-append.py
Output
Press "Run code" to execute.
Loading…
Start with [1, 2, 3]. Append 4 to the end and insert 0 at the front.
[1, 2, 3]
[0, 1, 2, 3, 4]
Press "Run code" to execute.