list functions | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

list functions

Drag and drop from the options below to add 'z' to the end of the list and print the list's length. list._____________ ('z') print(______ ______ ) len (list) insert append index

27th Apr 2019, 12:38 PM
Rawa SHAMO
Rawa SHAMO - avatar
4 Answers
+ 4
list append ('z') print (len (list) )
26th Sep 2019, 6:23 AM
Sandeep Perumal
Sandeep Perumal - avatar
0
Seems like this is quiz question from the Python course. If you can't figure out the answer, you can use hints or check the comments below the quiz.
27th Apr 2019, 12:46 PM
Matthias
Matthias - avatar
0
by a hint but the last answer is (list)
25th Feb 2020, 7:29 PM
Noah Masters
Noah Masters - avatar
0
list.append('z') print( len(list) )
2nd Nov 2020, 6:41 AM
dammika rajapaksha
dammika rajapaksha - avatar