+ 1
I don't understand how answer is 7
I tried all off the numbers but i do expected it as 4
4 Respostas
+ 4
Ok. You're adding 2 elements to a 5-element list. The resulting list is [9,8,11,7,6,5,4].
+ 2
What is the code?
+ 2
Thank you for your help i was so confused
+ 1
Nums = [9,8,7, 6,5]
Nums. Append(4)
Nums. Insert(2,11)
Print(len(Nums))