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

True or False

True is used for checking if a feature is on or if data is available. We store in a variable just like a string or a number and displaying works same way.

Example 1:

turned_on = True                                                                                                              print(turned_on)

Output:                                                                                                                              True

False is another special value and the opposite of True

Example 2

print (“Load data”)                                                                                                           status = False                                                                                                              print (status)

Output:

Load data                                                                                                                       False

 

 

Negating Values

Negating Values is the not in front of True make the expression result False. If something is not true it ahs to be false. not is the negating operator. It turns the value into their opposite. The not operator before False changes its value. If a value not False, it has to be True, then we displaying not False. We can also use the not operator with variables to negate their values. By displaying not available here, we’ll see its negated value.

available = True                                                                                                             print (not available)

Output:                                                                                                                           False

We can save a whole negating in other variable, too.like her is_evening should store the value of not morning.

morning =True                                                                                                               is_evening = not morning                                                                                             print (is_evening)

Output:                                                                                                                           False

 

 

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