KwickClips Python · 41 sec · free
Why did marks become None?
Short answer. append() returns None, and that None was stored in marks.
Which list method returns the removed item?
pop().
Remember
| append, sort, reverse: None |
| pop: returns the item |
| sorted, len, count: new value |
Storing append gave None. Why? Append changes the list and returns None. Storing that None lost your list. Call append alone. Append, sort and reverse return None. Pop returns the item. Sorted, len and count return values.
This clip is from the full lesson: List Methods and Built-in Functions — 7 minutes, with the tables, the quick answers and the whole lesson in text.
Useful for: CBSE Class 11 Computer Science (083), CBSE Class 11 Computer Science (083), CBSE Class 11 Computer Science (083), CBSE Class 11 Computer Science Essentials (083)
More KwickClips from this lesson
Why did append give a nested list?45 sec
What is the difference between remove() and pop()?46 sec
Why does print(marks.sort()) show None?40 sec
How do you find an average without a loop?41 secVoice-over is AI-generated; the script is written and checked by Kajal Ma'am. Confirm anything you plan around against your official board document. We never ask for a password or an OTP.

