Python Programming Class
Please leave a remark at the bottom of each page with your useful suggestion.
Python Online Webniar...
Table of Contents
Week 6 [09-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_day6_resource.zip
Project Input 1:
Click to Download: Python_Day6_Worksheet.zip
Project Submit:
Note: submit format "name_python_day6_project.zip"
Project Solution:
Click to Download: Python_Day6_Solution.zipWeek Record Video:
Python Tutorial Presentation
Write Your Comments or Suggestion...


