NCERT Book Class 11 Informative Practices Working With Lists and Dictionaries

Official NCERT Book for Class 11 Informatics Practices: Chapter 04 Working with Lists and Dictionaries

Review the NCERT Book Class 11 Informative Practices Working With Lists and Dictionaries designed for Class 11 Informatics Practices students. Published under the latest NCERT guidelines for 2026-27, this chapter-wise resource supports daily study and targeted revision.

Chapter-wise Study Material: Chapter 04 Working with Lists and Dictionaries

Access the complete PDF for Chapter 04 Working with Lists and Dictionaries below. This focused excerpt allows students to isolate specific topics for thorough review. Cross-reference your textbook exercises with our detailed NCERT Solutions for Class 11 Informatics Practices.

4.1 INTRODUCTION TO LIST

The data type list is an ordered sequence which is mutable and made up of one or more elements. Unlike a string which consists of only characters, a list can have elements of different data types such as integer, float, string, tuple or even another list. A list is very useful to group elements of mixed data types. Elements of a list are enclosed in square brackets and are separated by comma.

Example 4.1

#list1 is the list of six even numbers

>>> list1 = [2,4,6,8,10,12]

>>> print(list1)

[2, 4, 6, 8, 10, 12]

#list2 is the list of vowels
>>> list2 = ['a','e','i','o','u']
>>> print(list2)
['a', 'e', 'i', 'o', 'u']
#list3 is the list of mixed data types
>>> list3 = [100,23.5,'Hello']
 
>>> print(list3)
[100, 23.5, 'Hello']
#list4 is the list of lists called nested
#list
>>> list4 =[['Physics',101],['Chemistry',202],
['Mathematics',303]]
 
>>> print(list4)
[['Physics', 101], ['Chemistry', 202],
['Mathematics', 303]]


4.1.1 Accessing Elements in a List
Each element in list is accessed using value called index. The fist index value is 0, the second index is 1 and so on. Elements in the list are assigned index values in increasing order sterling from 0.
To access an element, use square brackets with the index [] value of that element. We may also use negative index value to access elements starting from the last element in the list, having index value -0.
#initialing a list named list1
>>> list1 = [2,4,6,8,10,12]
>>> list1[0] #returns first element of list1
2
>>> list1[3] #returns fourth element of list1
8
#Out of range index value for the list returns error
>>> list1[15]
IndexError: list index out of range
#an expression resulting in an integer index
>>> list1[1+4]
12
>>> list1[-1] #return first element from right
12
#length of the list1 is assigned to n
>>> n = len(list1)
>>> print(n)
6
#Get the last element of the list1
>>> list1[n-1]
12
 


Click on the below link to download NCERT Class 11 Informative Practices Working With Lists and Dictionaries

Download NCERT E-Textbook: Class 11 Informatics Practices Chapter 04 Working with Lists and Dictionaries

NCERT Book Class 11 Informatics Practices Chapter 04 Working with Lists and Dictionaries

Download the certified NCERT Textbook for Class 11 Informatics Practices Chapter 04 Working with Lists and Dictionaries. Educational authorities and instructors recommend this e-textbook as the foundational reference for all terminal tests and school assessments.

Access NCERT English Medium Textbooks

Access a full archive of NCERT books in English Medium tailored for Class 11 courses. Units like Chapter 04 Working with Lists and Dictionaries deliver in-depth concepts and thorough review questions at the section close.

Enhance Learning with Official Textbooks

The Class 11 Informatics Practices Chapter 04 Working with Lists and Dictionaries text is carefully engineered to build rock-solid foundational concepts. For an enriched academic journey, learners should pair this with our online NCERT Solutions and revision notes.

FAQs

Where can I download the latest NCERT Book Class 11 Informative Practices Working With Lists and Dictionaries in PDF for 2026-27?

You can download the latest, teacher-verified PDF for NCERT Book Class 11 Informative Practices Working With Lists and Dictionaries for free on StudiesToday.com. These digital editions are updated as per 2026-27 session and are optimized for mobile reading.

Does this Informatics Practices book follow the latest NCERT rationalized syllabus?

Yes, our collection of Class 11 Informatics Practices NCERT books follow the 2026 rationalization guidelines. All deleted chapters have been removed and has latest content for you to study.

Why is it better to download NCERT Book Class 11 Informative Practices Working With Lists and Dictionaries chapter-wise?

Downloading chapter-wise PDFs for Class 11 Informatics Practices allows for faster access, saves storage space, and makes it easier to focus in 2026 on specific topics during revision.

Are these NCERT books for Class 11 Informatics Practices sufficient for scoring 100%?

NCERT books are the main source for NCERT exams. By reading NCERT Book Class 11 Informative Practices Working With Lists and Dictionaries line-by-line and practicing its questions, students build strong understanding to get full marks in Informatics Practices.