BismilSoft - Programming With Python
BismilSoft - Programming With Python
Python has been a favourite option for Data Scientists who use it for building and using
Machine Learning Applications and other Scientific Computations. Python cuts
development time in half with its simple to read syntax and easy compilation feature.
Debugging programs is a breeze in Python with its built in debugger.
It runs on Windows, Linux/Unix and Mac OS and has been ported to Java and .NET virtual
machines. Python is free to use, even for the commercial products, because of its OSI-
approved open source license.
It has evolved as the most preferred Language for Data Analytics and the increasing search
trends on Python also indicates that it is the “Next Big Thing” and a must for Professionals
in the Data Analytics Domain.
2. Python Fundamentals
• Literals
• Keywords
• Identifiers
• Variables
• Exercise for Practice
3. Python Statement
• Statement
• Expression
• Python Indentation
• Exercise for Practice
4. Comments in Python
• Single Line Comments
• Multi Line Comments
• Exercise for Practice
6. Operators in Python
• Arithmetic operators
• Comparison operators
• Logical operators
• Bitwise operators
• Identity operators
• Membership Operators
• Exercise for practice
7. Python Namespace
• About Python Namespace
• Local Namespace
• Global Namespace
• Built-in Namespace
• Name Conflict
• Exercise for Practice
9. Functions
• Introduction to Function
• Defining a Function
• Calling a Function
• Function Arguments
• What are Args and Kwargs in Python
• Built-in Function
• Scope of the Variables
• Passing function to a Function
• Decorators
• Lambda
• Recursion Concept
• Exercise for Practice
10. Modules
• What is Module
• How to import a Module…?
• Import module
• The From… import statement
• The From…import* statement use
• Accessing Modules form another Directory
• Packages
• How to use packages in Python
• Import modules form a Package
• Exercise for Practice
11. Python Strings
• Creating String
• String Operators
• Unicode String
• Use the Built- in String Function
• Exercise for Practice
13. Tuples
• What is Tuples
• Tuples Operation
• Difference between List and Tuples
• Exercise for Practice
14. Dictionary
• What is Dictionary
• Dictionary Operation
• Exercise for Practice
2. Graph Theory
• About Graph and Graph Theory
• Module Pygraph
• Module Network
• Exercise for Practice
Python Programming - Practitioner Level
1. Reg Expressions
• Intro to Regular Expression
• Use of the re Library
• Use of Match() and Search() Method in Reg Ex
• Grouping
• Replace with sub() Method
• Use of Special Characters
• Flags
• Exercise for Practice
4. Python Multithreading
• What is the Thread
• Thread Life Cycle
• Create the Thread
• Exercise for Practice