<aside> <img src="/icons/table_red.svg" alt="/icons/table_red.svg" width="40px" /> Index

</aside>

Sr. No. Description Date Page No Signature
1 Introduction to Python

a. Operators in Python b. Input and Output c. Control Statements d. Libraries for Data Structures | 26-08-2024 to 09-09-2024 | | | | 2 | Implementing Arrays & Performing Basic Operations

a. Finding the Maximum & Minimum b. Array Rotations | 09-09-2024 | | | | 3 | Implementing Recursive Algorithms

a. Factorial b. Fibonacci c. Tower of Hanoi | 23-09-2024 to 30-09-2024 | | | | 4 | Searching Algorithms

a. Linear Search b. Binary Search | 30-09-2024 to 07-10-2024 | | | | 5 | Sorting Algorithms

a. Bubble Sort b. Insertion Sort c. Heap Sort d. Heapify e. Quick Sort f. Radix Sort | 07-10-2024 to 14-10-2024 | | | | 6 | Stack

a. Push b. Pop c. Peek d. Stack using LinkedList | 21-10-2024 to 25-11-2024 | | | | 7 | Linked List

a. Singly Linked List i. Traversal ii. Insertion iii. Deletion

b. Circular Linked List i. Traversal ii. Insertion iii. Deletion | 11-11-2024 to 25-11-2024 | | | | 8 | Queue

a. Basic Operations i. Enqueue ii. Dequeue

b. Circular Queue i. Enqueue ii. Dequeue | 02-12-2024 | | | | 9 | Trees

a. Binary Tree i. Pre-order ii. In-order iii. Post-order

b. Binary Search Tree i. Pre-order ii. In-order iii. Post-order iv**. Iterative** i. Searching ii. Insertion iii. Deletion v**. Recursive** i. Searching ii. Insertion iii. Deletion | 10-12-2024 to 18-12-2024 | | | | 10 | Graphs

a. BFS b. DFS | 23-12-2024 | | |


Operators in Python


Aim:

Define and understand the different types of operators in Python, providing code examples and outputs for each.

Concept:

Operators are special symbols that perform operations on variables and values. In Python, operators are categorized by the type of operation they perform. Here are the primary types:

  1. Arithmetic Operators: for basic mathematical operations.
  2. Comparison Operators: to compare values.
  3. Logical Operators: to combine conditional statements.
  4. Assignment Operators: to assign values to variables.
  5. Bitwise Operators: for operations on binary numbers.