This repository contains the programs in Python illustrated during the sessions.
Session | Title | Code Folder |
---|---|---|
1. | Introduction to Python | Session_1_Intro |
2. | Data Types and Conditionals | Session_2 |
3. | Control Statements - 2 | Session 3 |
4. | Loops | Session 4 |
5. | Loops - 2 | Session 5 |
6. | Pattern Printing | Session 6 |
7. | Functions | Session 7 |
8. | Functions - 2 | Session 8 |
9. | Lists - 1 | Session 9 |
10. | Problem Solving - 1 | Session 10 |
11. | Lists - 2 | Session 11 |
12. | Lists - 3 | Session 12 |
13. | Lists - 4 | Session 13 |
14. | Problem Solving - 2 | Session 14 |
15. | Strings | Session 15 |
16. | OOP | Session 16 |
- Hello World Program - Input and Output
- Assignment 1 Solution - Multiple Inputs
- Recap - Recap of last session
- Numbers: int and float
- bool
- Input type - Understanding type of input
- Typecasting - Converting input string to int
- Challenge 1: Add 2 numbers - Addition of 2 numbers
- Arithmetic Operators
- Challenge 2: Max of 2 numbers
- Challenge 3: Categorize the input number - Using nested if else
- Challenge 3: Categorize the input number - Using if elseif (elif) ladder