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.count()

← All stacks

Theory

250/268

list.count()

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

list.count() — output — 2. How many times 2 appears.

Trap for list.count() — 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.count()
print([1, 2, 2, 3].count(2))

list.count() — output: 2. How many times 2 appears.

Short notes

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

Questions

1

Explain list.count() 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.count()?

Previous← list.clear()Nextlist.pop() →
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.