You are on page 1of 3

Core Python Syllabus

1. Python Introduction

Introduction
Brief introduction of Python
Application areas of Python
Features of Python
Limitation of Python
Version of Python
Installing of Python
Setup path
Structure of Python Program
Working with Python

Language Fundamental:

2. Identifiers
Introduction
Rules for defining identifiers

3. Reserve words/Keywords
Introduction
Rules
uses

4. Variable
Global Variable
Local Variable

5. Data Types:
int (base conversion)
float
complex
bool
str (slice operator, type casting, "is" operator)
bytes
bytearray
list
tuple (range())
set
dict

6. Operators:
Arithmatic
Relational
Comparision
Logical
Bitwise:
Assignment
Special
identity
membership

7. Input and Output:


Take input from end user (int(), float()
Printing on screen
Reading data from keyboard

8. Control Flow:
Conditional Statements:
If
If- else
Nested if-else
Iterative Statements:
For
While
Nesting
Transfer Statements:
Break
Continue
Pass

9. String Handling
Accessing Strings
String slices
Basic Operations
Function and Methods

10. Lists
Introduction
creation of list
Accessing list
Operations
Working with lists
Function and Methods
List Comprehension
Nested List

11. Tuple

Introduction
Accessing tuples
Operations
Working
Functions and Methods

11. Dictionaries

Introduction
Accessing values in dictionaries
Working with dictionaries
Properties
Functions

12. Set
13. Functions

Defining a function
Calling a function
Types of functions
Function Arguments
Anonymous functions
Global and local variables
filter()
reduce()
map()

You might also like