📄️ Syntax and Coding Standards
What is a Programming Language?
📄️ Indentation
Indentation in Python means adding spaces or tabs at the beginning of a line to show that it belongs to a block of code. It is like grouping instructions together to tell Python which steps to follow under certain conditions or inside a function.
📄️ Variables and Basic Operators
What are Variables?
📄️ Data Type: Strings
In Python, data types define the type of data a variable can hold. Two fundamental data types are Strings and Numbers. Understanding these is essential for building any Python program.
📄️ Data Type: Numbers
Python supports various numerical types:
📄️ Control Flow
If/Else Statements
📄️ While Loops
Lets start this session with an exercise
📄️ Data Structure: List
Let us start with an exercise to help us understand what is list in python.
📄️ For Loops
Revisiting While Loops
📄️ Functions
Introducing Functions
📄️ Data Structure: List
Revisiting Lists
📄️ Exceptions
---
📄️ Object Oriented Programming
1. Lesson 1: What Is Object-Oriented Programming (OOP)?
📄️ What is type()?
The type() function in Python returns the type of an object. It can be used to determine the data type of elements in a list.