Course Content
Flowcharts
Before coding, students learn to map out logic. This covers decision-making processes, loops, and conditional branching (if/else) using visual flowcharts to build a "programmer’s mindset."
Lists
Learning how to manipulate text and ordered collections. Students will cover slicing, indexing, and methods like .append() or .join() to handle raw data effectively.
Tuples, Dictionaries, and Sets
Moving beyond simple lists to explore "Collections". This covers immutable data (Tuples), Key-Value pairs for complex mapping (Dictionaries), and unique item management (Sets).
Functions & Modular Code
Transitioning from scripts to "Dry" code (Don't Repeat Yourself). Students will learn to write reusable blocks of code (functions) and organize them into Modules for cleaner project management.
Lists & Strings Operations
A more advanced Learning on how to manipulate text and ordered collections.
Object-Oriented Programming (OOP)
The "Pro" transition. Students learn how to model real-world objects using Classes and Objects, covering essential concepts like Inheritance, Encapsulation, and Polymorphism.
Working with Private APIs
The final frontier. Students learn about authentication (API Keys/Tokens), Headers, and Security protocols required to interact with professional-grade private data systems.
Private: Python Development From Beginner To Pro

Concreate Problem solved with Python

Operation include:

+  Addition

–  Subtraction

* Multiplication

/ Division

Code is made up of comments and expressions;

  • Lines starting with # are comments. They are used to document code and helps others understand.
  • The other line of code are expressions telling the compiler what to do each expression assigns a value to a variable. The assigned operator is =                

Complex Arithmetic Operator are;

  1. % modulo: It returns the reminder of the division either even or odd.
  2. ** power: It raises a number to a certain power.
  3. // integer division: It calculates the integer division (rounded down)

Version for each Arithmetic Operator;

  1. += is for addition
  2. -= is for subtraction
  3. *= is for multiplication
  4. /= is for division 
  5. %= is for reminder of inter division

 

 

error: Content is protected !!
STF
Home
About Us â–¾
STF Hub â–¾
Blog â–¾
Sign up Apply for Scholarship →
Scroll to Top