# Topic covered
* Introduction to Python
* Python Name
* Where we can use Python
* Python Versions
* Flavors of Python
* Features of Python
* Why to use Python
* PEP - Python Enhancement Proposal
* Python Library
* Compiled language vs interpreted language
* Identifiers
* Reserved Words (Keywords)
[Read More]
02-Python Basic
Data types, dynamic and strong type
# Topic covered
* Data Types
* Python inbuilt functions
* Dynamic type and Strong Type
* Python collections
[Read More]
03-Python Basic
Flow Control(loop, if-else)
# Topic covered
* Flow Control
* Conditional / Decision Making statements
* if, if-else, if-elif-else
* Iterative Statements
* for, while
* Transfer Statements
* break, continue, pass
[Read More]
04-Python Basic
Operator in python
# Topic covered
Python provides the following set of operators
1. Arithmetic Operators
2. Relational Operators or Comparison Operators
3. Logical operators
4. Bitwise operators
5. Assignment operators
6. Identity Operators
7. Membership Operators
[Read More]
05-Python Basic
String data-types
# Topic covered
* String Data Type
* Define String literals
* Slicing of Strings
* String in-built function
* Formatting the Strings
[Read More]
06-Python Basic
Python list data types
# Topic covered
* List Data Structure
* List declaration
* List access
* Mathematical operators for List Objects
* Comparing List objects
* List in-built function
* List Comprehensions
[Read More]
07-Python Basic
Python Tuple and Set data types
# Topic covered
* Tuple Data Structure
* Tuple Packing and Unpacking
* Mathematical operators for tuple
* Tuple in-built function
* Tuple Comprehension
* Set Data Structure
* Mathematical operations on the Set
* Set in-built function
* Set Comprehension
[Read More]
08-Python Basic
Dictionary and dictionary operations
# Topic covered
* Dictionary Data Structure
* Dictionary declaration
* Keys of Dictionary
* Update Dictionary
* Display/access Dictionary
* Dictionary in-built function
* Dictionary Comprehension
* Iterate Through a Dictionary
* Usage
[Read More]
09-Python Basic
Functions, Parameters, Arguments, Generator, Iterator
# Topic covered
* Functions
* Built-in Functions
* Anonymous/lambda Functions
* map() function
* reduce() function
* filter() function
* eval() function
* User Defined Functions
* Return Statement
* Parameters & Arguments
* Positional arguments
* Keyword arguments
* Default arguments
* Variable length arguments
* Generators
* Iterable and Iterator in Python
* Create an Iterator Class
[Read More]