PGoCareerGoCareer prep tools
Home
LoginSign up
  • Java
  • Python
  • AI
  • React
  • Angular
  • PHP
  • Node.js
  • SQL
  • DSA
  • HTML
  • CSS
  • JS
  • Spring
  • ML
  • MongoDB

Python · Theory

list.clear()

← All stacks

Theory

249/268

list.clear()

list.clear() works on a list. Lists can change. Many methods update the same list (append, pop, sort, insert) instead of returning a new one.

list.clear() — output — []. clear empties the same list.

Trap for list.clear() — append([1, 2]) nests a list. extend([1, 2]) adds 1 and 2. sort vs sorted is a viva favourite.

Diagram
index →  0       1       2
  list  → [Asha,  Ravi,  Neha]
Exam tip

In place or new list? Say it first, then one example.

Example

# list.clear()
a = [1, 2, 3]
a.clear()
print(a)

list.clear() — output: []. clear empties the same list.

Short notes

  • Deflist.clear() changes or reads a list.
  • Rulelist.clear() — many list methods are in place.
  • Difflist.clear() — sort vs sorted, in place vs new list.
  • Traplist.clear() — append(list) nests a list; extend adds items.

Questions

1

Explain list.clear() as if you are teaching a junior — definition, then one tiny script.

2

What does the example print, and why?

3

What mistake do freshers make with list.clear()?

Previous← list.append()Nextlist.count() →
P

GoCareerGo

Utilities · Preparation Hub · Resume · CV · Tools — one workspace.

Workspace

DashboardProfilePreparation HubResume builderCV builderCareer planning

PDF Tools

Merge PDFSplit PDFCompress PDFImage to PDFAll toolsJobs

Image & QR

Compress ImageResize ImageQR ScannerQR GeneratorBlogIT interview prep

Company

FAQFeedbackContactPrivacyTermsSitemap

© 2026 GoCareerGo. Keep moving forward.