A learning experience that's as rigorous and in sync with the idustry as it is suited to beginners and upskillers alike.
Every aspect of our curriculum is specifically designed to cultivate the industry's most in-demand skills. From user research to wireframing, information architecture to stakeholder management - and everything in between - you'll grauate with everything you need to thrive in your new career.
We'll teach you the basics for python. You'll learn the basics that every python programmer needs to know.
Here, you'll start by understanding how to store information using variables. Variables are nothing but reserved memory locations to store values.
We'll show you how to print the specified message to the screen, or other standard output device. It's like showing you what's happening in your code.
Get ready to meet different types of data, like numbers, words, and yes/no values. Therefore, by assigning different data types to the variables, you can store integers, decimals or characters in these variables. You'll learn how to use and work with them.
Imagine you have a toolbox with math symbols and more. You'll learn how to use these tools to do all sorts of cool things with your data like incrementing, decrementing etc.
In programming, it's like leaving sticky notes to explain things to yourself and others. We'll show you how to leave notes in your code.
Collections in python are basically container data types, namely lists, sets, tuples, dictionary You'll learn how to convert from one collection to another.
In this section, we'll explore how to use Conditional statements also called decision-making statements. It's like giving your code directions to make decisions and repeat
Think of these as tools for comparing values and making decisions. It allows for conditional execution of a statement or group of statements based on the value of an expression We'll show you how to compare and make choices in your code.
You'll learn about the if...else statement which is used to execute a block of code among two alternatives. It checks for a given condition, if the condition is true, then the set of code present inside the ”if ” block will be executed otherwise not.
The for loop in Python is an iterating function. For loops can iterate over a sequence of numbers using the "range" and "xrange" functions. We'll teach you how.
Python While Loop is used to execute a block of statements repeatedly until a given condition is satisfied. You'll discover how to use them.
The break statement is used to terminate the loop immediately when it is encountered. It terminates the current loop. It's like saying, "Stop, I'm done!" We'll teach you how to do that.
When encountered, the loop starts next iteration without executing the remaining statements in the current iteration. The continue statement can be used in both while and for loops. Imagine you're in a line, but you want to skip one person and continue to the next. That's what "continue" does in a loop.
The pass statement is used as a placeholder for future code. When the pass statement is executed, nothing happens, but you avoid getting an error when empty code is not allowed. You'll see how to use them effectively.
In this section, we'll dive into Python functions, A function is a block of code which only runs when it is called. You'll discover how to create them, how they allow the programmer to create short and clean code to be reused in an entire program.
Python Functions is a block of statements that return the specific task. You'll learn all about Python functions and Follow steps to learn how to write and call functions in Python.
The part of a program where a variable is accessible is called its scope. You'll explore how variables can be local or global and how their scope affects your code.
A nested function is simply a function within another function, and is sometimes called an "inner function". You'll see how to organize your python codes.
The Python return statement is a special statement that you can use inside a function or method to send the function's result back to the caller. We'll teach you how to use it in your code.
A lambda function is a small anonymous function. A lambda function can take any number of arguments, but can only have one expression. You’ll see how this works.
In this section, we'll explore Python objects. Objects are like containers that can hold lots of information and actions. You'll learn how to create, use, and manipulate objects in Python.
Objects are like virtual toolboxes with compartments for data and actions. An object is simply a collection of data (variables) and methods (functions). We'll show you how to create and work with these containers to organize and manage information in your code.
In Python, methods are functions that are associated with an object and can manipulate its data or perform actions on it. You'll learn more on this.
In Python, they are containers which are able to store more than one item at the same time.
In this section, we'll explore python classes. Think of different ways you can use it in your codes.
Classes provide a means of building functionality together. We'll teach you how to create object templates.
Constructors are like blueprints for creating objects of the same type. It's like making multiple copies of the same tool. We'll teach you how to create them.
Inheritance allows us to define a class that inherits all the methods and properties from another class. You'll explore how they work.
In this section ,you will be introduced to libraries and modules which makes the code logically organized.
Think of modules as neatly organized toolboxes for your code. You'll explore how to structure your Python projects into modular pieces, making it easier to access and use on a large scale.
Python library contains a collection of related modules and packages. They are used by both programmers and developers. You'll learn how to use and access them.
In this section ,you’ll be introduced to image processing which allows us to transform and manipulate thousands of images at a time and extract useful insights from them.
Just like cropping your images using your phone ,you’ll learn how to do so with the python crop method.
Have you ever tried to set a picture as your wallpaper but the edges get cropped? You can you the python resize method to resize it to specified width and height.
you can rotate your images to a certain degree with this method. we’ll show you how to work with that.
Python Save Method Saves this your image under the given filename. you’ll learn how to save edited and manipulated images.
In this section ,we will learn about Graphical User Interface. Out of all the GUI methods, tkinter is the most commonly used method. It is a standard Python interface to the Tk GUI toolkit shipped with Python.
Windows are the containers in which all other GUI elements live. we’ll see more of this.
You will be taught tkinter widget which are Button, Checkbutton, Entry, Frame, Label, LabelFrame, Menubutton, PanedWindow, Radiobutton, Scale and Scrollbar. You’ll learn how to use each and every one of them.
? Any Questions? Contact Us