Be Globally Certified In Python

Python is a great text coding programming language for kids!

Python

Python is a programming language that is particularly good for kids wanting to learn how to code. Python is widely used to teach students coding due to it`s easy to read and understand. Students can learn to write simple code to make their computer run a program.

Python Programming Syllabus

Module 1: Introduction To Coding With Python

In this Class, students will be introduced to text coding with Python programming language

What is Python?
Python is a popular programming language created by Guido van Rossum, and released in 1991.

Python is used for:

  1. web development (server-side)
  2. Software development
  3. Mathematics

What can Python do?

  1. Python can be used on a server to create web applications.
  2. Python can be used alongside software to create workflows.
  3. Python can connect to database systems. It can also read and modify files.
  4. Python can be used to handle big data and perform complex mathematics.
  5. Python can be used for rapid prototyping, or for production-ready software development.

In this Class, students will be taught how to use comments in Python programming language

What is comment in Python?

Comments can be used to explain Python code.

Comments can be used to make the code more readable.

Comments can be used to prevent execution when testing code.

Creating a Comment in Python
Comments starts with a #, and Python will ignore them:

Multi Line Comments in Python
Python does not really have a syntax for multi line comments, to add a multiline comment you could insert a # for each line.

Since Python will ignore string literals that are not assigned to a variable, you can add a multiline string (triple quotes) in your code, and place your comment inside it:

Module 2: Variables And Data Types

In this class, students will learn the various types of data in Python programming language

What is data?

Data is simply a useful information that can be processed for calculating, planning and reasoning.

Variables can store data of different types, and different types can do different things.

Python has the following data types built-in by default, in these categories:

Text Type: str
Numeric Types: intfloatcomplex
Sequence Types: listtuplerange
Mapping Type: dict
Set Types: setfrozenset
Boolean Type: bool
Binary Types: bytesbytearraymemoryview
None Type: NoneType

In this Class, students will learn how to use variables in Python programming language

What are variables?

Variables are containers for storing data values.

Examples:

score = 95 # score is a variable storing data 96
name = "Johnson" # name is a variable storing data "Johnson"
print(score)
print(name)

Your Content Goes Here