0% found this document useful (0 votes)
2 views4 pages

Class 11 Computer Science Python Notes

The document covers four chapters on data structures in programming: Strings, Lists, Tuples, and Dictionaries. Each chapter discusses the characteristics, creation, indexing, slicing, and important programs related to the data structure. Key programs include palindrome checks for strings, sum of elements for lists, max/min for tuples, and word frequency for dictionaries.

Uploaded by

shwetalahoriji
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views4 pages

Class 11 Computer Science Python Notes

The document covers four chapters on data structures in programming: Strings, Lists, Tuples, and Dictionaries. Each chapter discusses the characteristics, creation, indexing, slicing, and important programs related to the data structure. Key programs include palindrome checks for strings, sum of elements for lists, max/min for tuples, and word frequency for dictionaries.

Uploaded by

shwetalahoriji
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Chapter 1: Strings

A string is a sequence of characters enclosed in quotes.

Strings are immutable.

Topics: creation, indexing, slicing, methods, traversal.

Important programs: palindrome, vowel count.


Chapter 2: Lists
List is a mutable, ordered collection.

Topics: creation, indexing, slicing, methods, traversal.

Important programs: sum of elements, even-odd count.


Chapter 3: Tuples
Tuple is an immutable collection.

Topics: creation, indexing, slicing, tuple methods.

Important programs: max/min in tuple.


Chapter 4: Dictionary
Dictionary stores data in key-value pairs.

Topics: creation, accessing values, methods.

Important programs: word frequency.

You might also like