Python Certification Basic Level
Topic Name | Topic details | Objective |
Basics of programming languages |
| General discussion on programming concepts. The topic helps students in making an informed choice when selecting a programming language. |
Installing python |
| This involves downloading the software from official python website and installing it on computer. The basic aim is to understand that what are the components installed with python. This topic also introduces the students to the python IDLE environment and start interacting with python IDLE using basic I/O operations |
Literals, operators and variables |
| This topic introduces students to the basic structure of programming. With this topic, students should be able to start writing small programs. They should be able to relate the concepts with the mathematical concepts learnt in school. |
Making decisions |
| This topic helps students understand the various paths that a program can take and how you can control the flow of program using conditions |
Loops |
| A very important topic which lets students understand how computer can be made to do repetitive tasks and how you can control the loops. This topic gives the student an exposure to where and how loops can be useful in programming. |
Data structures in python |
| The aim is to introduce the different data structures and how they can be useful to store different types of data. |
File Handling |
| The aim is for the student to understand how to read a file, process data and output the processed data to a file. Includes small problem statement |