Loading...
Course Detail

Python Mastery

Python Mastery

Build Your Academic Superpowers

Duration: 3.5 Months

Contact: pitechschools@gmail.com

Website: www.pitechschools.com

OVERVIEW & PURPOSE

In this course you will learn about the Python programming language from basic to advanced level. You will gain confidence to work with advanced problem solving and doing simple tasks with Python language. You will be able to think logically and can solve any mathematical problems with ease. This course also covers your Diploma-In-Engineering course curriculum. So, you don’t have to worry about your academics during this course. We encourage students from class 8 to class 12 (Intermediate) to join in order to improve your logic building skills and programming capabilities. A part of University students can also join us to improve their programming skills. 

BENEFITS OF THIS COURSE

  1. 50+ Online Live and Support Classes.
  2. 24/7 Support Group.
  3. 15+ Quizzes Assignments.
  4. Top 3 Performer Reward.
  5. Online Coding Platform.
  6. Interactive Environment.
  7. Completion Certificate.
  8. Opportunity to work with industry expert teams.

MATERIALS NEEDED

  1. A stable internet connection.
  2. A laptop or a computer or just a mobile phone can do the stuff. But it is not recommended to use a mobile phone to continue this course.

COURSE MODULE

We will continue this course by following this module step by step.

Week 1

Saturday - Introduction of Python programming history, Installation in multiple Operating System and Basic syntax overview.

  1. Who is the creator of Python?
  2. How was Python born?
  3. Why was Python created for?
  4. Why should I use Python?
  5. How Python is ruling the world now?
  6. Download and install Python 3.12.x
  7. Download and install VS Code latest.
  8. Setup extensions for VS Code for Python code.
  9. Introduction with Python shell, PIP module.
  10. Basic syntax overview of Python.

Monday - Quiz Test

Tuesday - Operators, Data Types, Comments, Number Types, Type Casting.

  1. Operators:
    1. Addition
    2. Subtraction
    3. Multiplication
    4. Division
    5. Floor division
    6. Modulus
    7. Exponentiation
  2. Data Types:
    1. String
    2. Integer
    3. Float
    4. Complex
    5. List
    6. Tuple
    7. Dictionary
    8. Set
    9. Bool
    10. None
  3. Type casting:
    1. String
    2. Integer
    3. Float
    4. Complex
    5. List
    6. Tuple
    7. Dictionary
    8. Set
    9. Bool
  4. Why are comments important?

Thursday - Assignment “Python History”: Write a brief history about the Python programming language in 500+ words with basic syntax covered and type casting examples. 

Week 2

Saturday - Variables, User input, Print statements, Keywords.

  1. What are variables?
  2. Usage of variables.
  3. User input and manipulations.
  4. Output data with print functions.
  5. Keywords:
    1. and
    2. or
    3. not
    4. is
    5. in
    6. assert
    7. del
    8. nonlocal
    9. global

Monday - Quiz Test

Tuesday - Condition statements, varieties of conditions.

  1. If…else statement.
  2. Elif ladder.
  3. Problem: Even-Odd check.
  4. Shorthanded if-else.

Thursday - Assignment “Login System”: Write a program that takes username and password as user input and checks if username and password matches our previously declared username and password. If both matches it will print login success otherwise failed to login.

Week 3

Saturday - Loops, Types of loops.

  1. What is a loop?
  2. Why do we need loops?
  3. Type of loops:
    1. For loop syntax and usage.
    2. While loop syntax and usage.
  4. Infinity and controlled loop examples with both variants.

Monday - Quiz Test

Tuesday - Everything about Python functions.

  1. What functions do we need?
  2. What are functions in Python?
  3. Using built-in functions.
  4. Writing our custom functions.
  5. Arguments types:
    1. Positional arguments
    2. Keyword arguments
    3. Positional-Only arguments
    4. Keyword-Only arguments
  6. Default value, return statement
  7. Docs string
  8. pass statement

Thursday - Assignment “ChatBot”: Write a basic chatbot. Based on topics - Loops, input, print, conditions.

Week 4

Saturday - String Manipulations.

  1. What is string?
  2. Various types of string methods.
  3. Single quote, Double quote, Multi-lines string.
  4. Concatenation.
  5. F-string, Raw-string.
  6. String methods:
    1. lower()
    2. upper()
    3. title()
    4. capitalize()
    5. len()
    6. format()
    7. startswith()
    8. endswith()

Monday - Quiz Test

Tuesday - Advanced String methods.

  1. String slicing.
  2. Accessing substring.
  3. Reverse slicing.
  4. More methods:
    1. strip()
    2. lstrip()
    3. rstrip()
    4. replace()
    5. split()
  5. Escape sequence:
    1. \\
    2. \n
    3. \t
    4. \r

Thursday - Assignment “Custom CMD or Shell”: Write a command shell like CMD. Based on topics - Loops, input, print, conditions.

Week 5

Saturday - List operations.

  1. Why list?
  2. Array vs List in Python.
  3. List methods:
    1. append()
    2. remove()
    3. insert()
    4. pop()
    5. len()
    6. count()
    7. clear()

Monday - Quiz Test

Tuesday - Advance list operations.

  1. List slicing.
  2. Access by index.
  3. Change list items.
  4. Nested List.
  5. More List methods:
    1. sort()
    2. extend()
    3. join()
    4. reverse()
  6. Shallow copy VS Deep copy.

Thursday - Assignment: TODO management system using lists, loops and other necessary things as you need.

Week 6

Saturday - Dictionary, Tuple and Set operations.

  1. What is a Dictionary, Tuple and Set  in Python?
  2. Access items.
  3. Change items.
  4. Loop over a Dictionary, Tuple and Set.
  5. Nested Dictionary, Tuple and Set.
  6. Various types of methods in Dictionary, Tuple and Set.

Monday - Quiz Test

Tuesday - Structural Pattern Matching

  1. What is Structural Pattern Matching ?
  2. Why do we need a Match statement ?
  3. If - Else VS Match - Case.
  4. Advance usage of Match statement.

Thursday - Assignment “Grade Analysis”: Student Grades Analysis System. Use match statement.

Week 7

Saturday - Builtin functions.

  1. List of built-in functions we need:
    1. help()
    2. dir()
    3. type()
    4. sorted()
    5. reversed()
    6. enumerate()
    7. zip()
    8. sum()
    9. range()
    10. exec() VS eval()
    11. any() VS all()

Monday - Quiz Test

Tuesday - File Operations.

  1. File modes. When to use which modes?
  2. File manipulation methods:
    1. open()
    2. read()
    3. readline()
    4. readlines()
    5. write()
    6. close()
    7. is_closed
  3. Why do we need a context manager?
  4. Advantages of context managers.

Thursday - Assignment “Shopping List Manager”: Reading and Writing Shopping Lists to a File.

Week 8

Saturday - Exception Handling.

  1. Why do we need to handle exceptions?
  2. Try… Except
  3. Try…Except…Except…
  4. Try…Except…Else
  5. Try…Except…Else…Finally
  6. Handling:
    1. SyntaxError
    2. IndexError
    3. AssertionError
    4. AttributeError
    5. ImportError
    6. KeyError
    7. NameError
    8. TypeError

Monday - Quiz Test

Tuesday - Math, Datetime module.

  1. Use of Math and Datetime module.
  2. Important Math methods.
  3. Built-in math methods:
    1. min()
    2. max()
    3. abs()
    4. pow()
  4. From Math module:
    1. sqrt()
    2. ceil()
    3. floor()
    4. pi
  5. Datetime manipulation in Python.
  6. Datetime methods:
    1. now()
    2. today()
    3. year
    4. strftime()
    5. timedelta()
  7. Custom formatted date time.

Thursday - Assignment: Multi-functional Calculator with time log. 

Week 9

Saturday - OS and Random module.

  1. OS methods:
    1. getcwd()
    2. chdir()
    3. mkdir()
    4. listdir()
    5. rename()
    6. path.join()
  2. Random methods:
    1. random()
    2. randint()
    3. sample()
    4. choice()
  3. Problem: Implement a dice game.

Monday - Quiz Test

Tuesday - Sys module.

  1. What is the sys module?
  2. Argv, exit(), path, modules, 
  3. Problem - Custom print function.
  4. Problem - Custom CLI tool.

Thursday - Assignment: Password Generator CLI tool, which will take a number of characters and return a random generated password as predefined in the tool internally.

Week 10

Saturday - Requests module.

  1. What is an API request?
  2. Why do we need to use requests?
  3. Requests method:
    1. Get
    2. Post
    3. Proxy
    4. Header
    5. Data
    6. Status_code
    7. Encoding
    8. Text
    9. Content
    10. Json
  4. Exceptions to handle:
    1. ConnectionError
    2. TooManyRedirects
    3. Timeout
    4. HTTPError
    5. JSONDecodeError

Monday - Quiz Test

Tuesday - Regular Expression or RegEx.

  1. Why regular expressions?
  2. Where to use RegEx?
  3. Introduction with RegEx instructions.
  4. Problems:
    1. Email validation
    2. Mobile number validation
    3. GPA/CGPA validation
    4. URL validation
  5. Methods:
    1. find()
    2. findall()
    3. search()
    4. sub()

Thursday - Assignment “Image downloader”: Download image from the internet using Python.

Week 11

Saturday - Introduction to Object Oriented Programming (OOP).

  1. What is class?
  2. Contractor, objects, instance.
  3. Methodologies of OOP.
  4. Introduction to Abstraction, Encapsulation, Polymorphism, and Inheritance.
  5. Abstraction explanations.
  1. Why do we need it?
  2. ABC module.
  3. Abstract class construction.
  1. Encapsulation explanations
    1. Access modifiers.
    2. Public, Private, Protected.
    3. Why do private variables not exist in Python?

Monday - Quiz Test

Tuesday - More OOPs

  1. Polymorphism explanations.
  1. Runtime polymorphism.
  2. Compile-time polymorphism.
  1. Inheritance explanations.
    1. Single inheritance.
    2. Multiple inheritance.
    3. Multi-level inheritance.
    4. Hierarchical inheritance.

Thursday - Assignment “Bank Account Simulation”: Simulate a Bank Account with OOP.

Week 12

Saturday - Dunder methods or Magic methods of Python.

  1. What are dunder methods in Python?
  2. How do thunder methods work?
  3. List of dunder methods:
    1. __init__
    2. __str__
    3. __del__
    4. __repr__
    5. __len__
    6. __add__
    7. __sub__
    8. __mul__
    9. __div__
    10. __eq__
    11. __ne__
    12. __bool__
    13. __setitem__
    14. __getitem__
    15. __delitem__
    16. __contains__
    17. __int__
    18. __float__
    19. __reversed__
    20. __sorted__

Monday - Quiz Test

Tuesday - Logging and Unit testing.

  1. Why is logging and testing needed?
  2. Basic logger setup.
  3. Understanding logging concepts.
  4. Debugging applications with logging.
  5. Basic of Unit testing and structure.
  6. Testing our codes.
  7. Multiple test setup.

Thursday - Assignment “Module Testing”: Writing unit tests for a simple calculator application.

Week 13

Saturday - List, Dictionary and Set Comprehensions and Lambda/Anonymous functions.

  1. What is comprehension in Python programming language?
  2. Why do we need comprehension?
  3. List comprehension examples.
  4. Dictionary comprehension examples.
  5. Set comprehension examples.
  6. What is Lambda for Anonymous functions?
  7. What is the use case of Lambda functions?
  8. Lambda functions examples.

Monday - Quiz Test

Tuesday - Iterators, Generators and Decorators.

  1. What are iterators and generators?
  2. Why use them?
  3. Built-in iterative objects.
  4. Custom iterator declaration.
  5. Writing lazy methods with generators.
  6. What are Decorators?
  7. Why do we need to use them?
  8. Using built-in decorators.
  9. Writing custom decorators.

Thursday - Assignment “Performance Tester”: Implementing a simple logging decorator for function execution time.

Week 14

Saturday - Creating your custom modules.

  1. What are modules in the Python programming language?
  2. What modules are important in Python?
  3. How modules are built?
  4. Creating our custom Python importable modules.
    1. Creating a virtual environment.
    2. Writing custom methods and classes.
    3. Writing tests for our module.
    4. Writing configurations for our module.
    5. Format our codes and sort import properly following PEP-8 standards.

Monday - Quiz Test

Tuesday - Publishing our own module to PyPI global registry.

  1. Setup your PyPI account.
  2. Final configuration of our project for publishing.
  3. Connect an SSH token with your device.
  4. Validate our module before publishing with Twine.
  5. Publish and install locally to test.

Thursday - Assignment “Dictionary Module”: Create your custom module dictionary. It will have some predefined words list from Bangla to English and English to Bangla. Your module should have functions bangla_to_english() and english_to_bangla() show your creativity and architect your own module.

TERMS AND POLICIES

The course module is developed by our instructor and changes are subject to our decisions. We have the rights to change any specific part or everything in this module at any time. All rights have been reserved by PITechSchools.

SUPPORT SYSTEM

We provide 24/7 online group based support. If a student encounters any problem he/she can ask in a related support group. An instructor or support team will try to answer the problem as quickly as possible. We are serving our students from the Discord server. This is a public server and anyone can join us here. We have separated each support group by roles. For students, instructors, support team, general community members. You can join our server from this link: https://discord.gg/NYJakz7BWV

Get the pdf version of this module: https://t.ly/VmOPp

 

Course Features

Instructor
Md. Almas Ali
Feedbacks
0
Duration
3.5 Months
Price: 2,500 BDT 10,000 BDT