Python Programming Class

Please leave a remark at the bottom of each page with your useful suggestion.


Python Online Webniar...


Table of Contents

  1. Introduction
  2. Week 1
  3. Week 2
  4. Week 3
  5. Week 4
  6. Week 5
  7. Week 6
  8. Week 7
  9. Week 8
  10. Week 9
  11. Test and Certificate

Week 5 [02-11-2025]


Python Programming Language

There are four collection data types in Python :

List: is a collection which is ordered and changeable(modifiable). Allows duplicate members.

Tuple: is a collection which is ordered and unchangeable or unmodifiable(immutable). Allows duplicate members.

Set: is a collection which is unordered, un-indexed and unmodifiable, but we can add new items to the set. Duplicate members are not allowed.

Dictionary: is a collection which is unordered, changeable(modifiable) and indexed.

  • List in Python
  • List
    • How to Create a List
    • Accessing Positive Indexing
    • Accessing Negative Indexing
    • Unpacking List Items
    • Slicing Items from a List
    • Modifying Lists
    • Checking Items in a List
    • Adding Items to a List
    • Inserting Items into a List
    • Removing Items from a List
    • Removing Items Using Pop
    • Removing Items Using Del
    • Clearing List Items
    • Copying a List
    • Joining Lists
    • Counting Items in a List
    • Finding Index of an Item
    • Reversing a List
    • Sorting List Items

Week Resource:
Click to Download: python_day5_resource.zip

Project Input 1:
Click to Download: Python_Day5_Worksheet.zip

Project Submit:

Note: submit format "name_python_day5_project.zip"




Project Solution:
Click to Download: Python_Day5_Solution.zip
Week Record Video:



Python Tutorial Presentation





Support our work — donate ₹100.


Write Your Comments or Suggestion...