The index(), count() and other "functions" you mention aren't standalone functions, they are methods of lists. That means you apply them to the list, like this: test = [1, 2, 3, 4, 5, 6] print(test.index(3)) # print index in list of the element of value 3 The list methods are described in the documentation . Answer from Deleted User on reddit.com
W3Schools
w3schools.com โบ python โบ python_lists_methods.asp
Python - List Methods
Python has a set of built-in methods that you can use on lists. ... If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail: sales@w3schools.com
W3Schools
w3schools.com โบ python โบ python_lists.asp
Python Lists
Python Overview Python Built-in Functions Python String Methods Python List Methods Python Dictionary Methods Python Tuple Methods Python Set Methods Python File Methods Python Keywords Python Exceptions Python Glossary
Videos
12:09
All Python List Methods in 12 Minutes - YouTube
18:30
Lists Methods in Python | Python for AI #25 - YouTube
09:23
ALL 11 LIST METHODS IN PYTHON EXPLAINED - YouTube
08:30
List Functions in Python with examples | List Methods in Python ...
24:35
Python Lists Tutorial | Python List Functions | Python Tutorial ...
W3Schools
w3schools.com โบ python โบ python_ref_functions.asp
Python Built-in Functions
Python Overview Python Built-in Functions Python String Methods Python List Methods Python Dictionary Methods Python Tuple Methods Python Set Methods Python File Methods Python Keywords Python Exceptions Python Glossary
W3Schools
w3schools.com โบ python โบ python_dsa_lists.asp
Python Lists and Arrays
Python lists come with several built-in algorithms (called methods), to perform common operations like appending, sorting, and more.
W3Schools
w3schools.com โบ python โบ python_lists_comprehension.asp
Python - List Comprehension
Python Overview Python Built-in Functions Python String Methods Python List Methods Python Dictionary Methods Python Tuple Methods Python Set Methods Python File Methods Python Keywords Python Exceptions Python Glossary
W3Schools
w3schoolsua.github.io โบ python โบ python_lists_methods_en.html
Python List Methods. Lessons for beginners. W3Schools in English
Python - List Methods. Python has a set of built-in methods that you can use on lists. Examples. Lessons for beginners. W3Schools in English
W3Schools
w3schools.com โบ python โบ python_lists_add.asp
Python - Add List Items
Python Overview Python Built-in Functions Python String Methods Python List Methods Python Dictionary Methods Python Tuple Methods Python Set Methods Python File Methods Python Keywords Python Exceptions Python Glossary
Reddit
reddit.com โบ r/learnpython โบ w3schools lists tutorials; half of the functions they use don't seem to work?
r/learnpython on Reddit: w3schools lists tutorials; half of the functions they use don't seem to work?
October 2, 2023 -
Total newbie here. Just been doing some basic exercises and I think the site I'm using is missing some advice, but its such a basic problem I've had no luck googling.
https://www.w3schools.com/python/python_lists.asp
Here they have a list of functions for working with lists; "index()"; "count()"; etc. and implies that these are "built in". However my Python install (3.11.5) doesn't have them as core. I assume I just need to import a module but w3 doesn't tell me which module to import.
Am I right? If so which module is it? I assume its really basic common knowledge.
Thanks x
Top answer 1 of 2
4
The index(), count() and other "functions" you mention aren't standalone functions, they are methods of lists. That means you apply them to the list, like this: test = [1, 2, 3, 4, 5, 6] print(test.index(3)) # print index in list of the element of value 3 The list methods are described in the documentation .
2 of 2
1
Can you mention explicitly what you've done and how Python reacts? I have 3.11.5, and the builtin list functions you've mentioned work just fine. >>> b = ['apple', 'banana', 'apple', 'cherry'] >>> b.count('apple') 2 >>> b.index('banana') 1
W3Schools
w3schools.com โบ python โบ python_lists_access.asp
Python - Access List Items
Python Overview Python Built-in Functions Python String Methods Python List Methods Python Dictionary Methods Python Tuple Methods Python Set Methods Python File Methods Python Keywords Python Exceptions Python Glossary
W3Schools
w3schools.com โบ python
Python Tutorial
Test your Python skills with a quiz. ... Note: This is an optional feature. You can study at W3Schools without creating an account. You will also find complete function and method references: Reference Overview Built-in Functions String Methods List / Array Methods Dictionary Methods Tuple ...
W3Schools
w3schools.com โบ python โบ python_ref_list.asp
Python List/Array Methods
Python has a set of built-in methods that you can use on lists/arrays. Note: Python does not have built-in support for Arrays, but Python Lists can be used instead. Learn more about lists in our Python Lists Tutorial. Learn more about arrays in our Python Arrays Tutorial. ... If you want to use W3Schools ...
W3Schools
w3schools.com โบ python โบ ref_func_list.asp
Python list() Function
Python Overview Python Built-in Functions Python String Methods Python List Methods Python Dictionary Methods Python Tuple Methods Python Set Methods Python File Methods Python Keywords Python Exceptions Python Glossary
W3Schools
w3schools.com โบ python โบ gloss_python_array_methods.asp
Python Array Methods
Python has a set of built-in methods that you can use on lists/arrays. Note: Python does not have built-in support for Arrays, but Python Lists can be used instead. Python Array Tutorial Array What is an Array Access Arrays Array Length Looping Array Elements Add Array Element Remove Array Element ... If you want to use W3Schools ...
W3Schools
w3schools.com โบ python โบ python_ref_string.asp
Python String Methods
Remove List Duplicates Reverse a String Add Two Numbers ยท Python Examples Python Compiler Python Exercises Python Quiz Python Challenges Python Server Python Syllabus Python Study Plan Python Interview Q&A Python Bootcamp Python Certificate Python Training ... Python has a set of built-in methods that you can use on strings.
W3Schools
w3schools.com โบ python โบ python_lists_loop.asp
Python - Loop Lists
Python Overview Python Built-in Functions Python String Methods Python List Methods Python Dictionary Methods Python Tuple Methods Python Set Methods Python File Methods Python Keywords Python Exceptions Python Glossary
GeeksforGeeks
geeksforgeeks.org โบ python โบ list-methods-python
Python List methods - GeeksforGeeks
In this article, weโll explore all Python list methods with a simple example.
Published ย July 23, 2025
W3Schools
w3schoolsua.github.io โบ python โบ python_lists_en.html
Python Lists. Lessons for beginners. W3Schools in English
Python Lists. List Items. Ordered. Changeable. Allow Duplicates. List Length. List Items - Data Types. type(). The list() Constructor. Python Collections (Arrays). Examples. Lessons for beginners. W3Schools in English
W3Schools
w3schools.com โบ python โบ python_lists_copy.asp
Python - Copy Lists
Python Examples Python Compiler Python Exercises Python Quiz Python Challenges Python Server Python Syllabus Python Study Plan Python Interview Q&A Python Bootcamp Python Certificate Python Training ... You cannot copy a list simply by typing list2 = list1, because: list2 will only be a reference to list1, and changes made in list1 will automatically also be made in list2. You can use the built-in List method copy() to copy a list. ... Another way to make a copy is to use the built-in method list(). ... You can also make a copy of a list by using the : (slice) operator. ... If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail: sales@w3schools.com
W3Schools
w3schools.com โบ python โบ python_lists_change.asp
Python - Change List Items
Python Overview Python Built-in Functions Python String Methods Python List Methods Python Dictionary Methods Python Tuple Methods Python Set Methods Python File Methods Python Keywords Python Exceptions Python Glossary
W3Schools
w3schools.com โบ python โบ python_examples.asp
Python Examples
Python Overview Python Built-in Functions Python String Methods Python List Methods Python Dictionary Methods Python Tuple Methods Python Set Methods Python File Methods Python Keywords Python Exceptions Python Glossary