Python Learning Syllabus_ Basic to Advanced (3 Months Duration)
Python Learning Syllabus_ Basic to Advanced (3 Months Duration)
5. Hands-on Practice
○ Create a Python script to calculate the area of a rectangle.
i. Area=length×width
○ Convert temperature between Celsius and Fahrenheit.
i. C to F: F=C×5/9+32
ii. F to C: C=(F−32)×9/5
○ Multiplication Tables up to 10
i. Use a loop to iterate through numbers 1 to 10 (for loop).
ii. For each number, use another loop to calculate its multiples
from 1 to 10 (inner loop).
iii. Print each result in the format: a x b = c.
○ Basic Patterns
i. Right-Aligned Triangle
1. Loop from 1 to n for rows.
1. Functions
○ Defining and calling functions.
○ Parameters and arguments (positional, keyword, default).
○ Return values.
○ Scope and global variables.
2. Modules and Libraries
○ import and use standard libraries (e.g., math, random).
○ Writing custom modules.
3. Hands-on Practice (WIP)
○ Calculator program using functions.
○ Dice roll simulation using random.
Problem Statement: