Python Quiz #4 What is the output of the following code snippet? A) 10 B) [1, 9, 10, 12] C) [11, 13, 14, 15] D) Error
Answer to the previous question: C
Python Quiz # 3 What is the output of this code snippet? A) ['abc', 'y', 'z'] B) [1, 2, 3] C) ['x', 'y', 'z'] D) All of the above Answer for Quiz # 2 in the thread 🧵👇
That's a wrap! I hope you learnt something new today. Follow me @python_spaces for more such content. Like and RT the first tweet to share with your friends. Cheers 🎉
Python Quiz #4 What is the output of the following code snippet? A) 10 B) [1, 9, 10, 12] C) [11, 13, 14, 15] D) Error
How did you end up with the answer?? Can you please explain?
How did you end up with the answer?? Can you please explain?
B as the array is sorted by values of > or < but not before the last index is removed by the offset of -1
B... numbers[:-1] = 10,9,12,1 sorted(numbers[:-1]) = [1,9,10,12]
B this is because python sees the list at the end as the last value and since we’re using negative indexes to locate the last value, it’s not part of the sorted data
>>> nums=10,9,12,1,[11,13,15,14] >>> sorted(nums[:-1]) [1, 9, 10, 12] >>> sorted(nums[:-2]) [9, 10, 12] >>> sorted(nums[:0]) []
B) [1, 9, 10, 12] because sorted() Return a new list containing all items from the iterable in ascending order.
-1 index contains the whole list [11,13,15,14] for our list numbers... numbers[:-1] gives the output except the values at index -1.. Finally, sorted sorts the list in ascending order as: 1,9,10,12
B numbers[:-1] gives tuple (10,9,12,1) sorted(numbers[:-1]) returns sorted list (1,9,10,12)
numbers is a tuple, then slice a tuple without last element, except the list. For last, the first four elements from the tuple are sorted, and sorted returns a sorted list with 4 numbers in increasing order.
United States Тренды
- 1. #10SET N/A
- 2. $RDAC N/A
- 3. Good Tuesday 31.1K posts
- 4. Jamaica 148K posts
- 5. #NationalFirstRespondersDay N/A
- 6. Dodgers 285K posts
- 7. Wikipedia 76.6K posts
- 8. #WorldSeries 225K posts
- 9. #tuesdayvibe 2,070 posts
- 10. Freddie Freeman 80K posts
- 11. Grokipedia 115K posts
- 12. #JUNGKOOKXCALVINKLEIN 245K posts
- 13. $PYPL 33.6K posts
- 14. PayPal 91.5K posts
- 15. USS George Washington 34.7K posts
- 16. Hurricane Melissa 115K posts
- 17. Ohtani 148K posts
- 18. $MSFT 48.2K posts
- 19. Nelson 23.1K posts
- 20. Jackie Robinson N/A
Something went wrong.
Something went wrong.