0% found this document useful (0 votes)
11 views7 pages

BismilSoft - Programming With Python

The document outlines a foundation level course on Python programming covering topics like Python fundamentals, data types, operators, decision making, loops, functions, modules, strings, lists, tuples, dictionaries, file handling and exception handling. It also outlines an advanced level course on object oriented programming and graph theory in Python. Finally, it outlines a practitioner level course covering regular expressions, database access, sending emails, multithreading, GUI programming and accessing data from multiple sources in Python.

Uploaded by

Drag Zany
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
11 views7 pages

BismilSoft - Programming With Python

The document outlines a foundation level course on Python programming covering topics like Python fundamentals, data types, operators, decision making, loops, functions, modules, strings, lists, tuples, dictionaries, file handling and exception handling. It also outlines an advanced level course on object oriented programming and graph theory in Python. Finally, it outlines a practitioner level course covering regular expressions, database access, sending emails, multithreading, GUI programming and accessing data from multiple sources in Python.

Uploaded by

Drag Zany
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 7

Why Learn Python Programming ?

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.

Python Programming - Foundation Level

1. Introduction of Python Programming


• What is Python
• Installing Python
• How to Execute Python program
• Getting Help
• Python IDEs
• List the Advantages/Disadvantages of Python
• Exercise for Practice

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

5. Python Data Type


• Booleans
• Numbers
• Strings
• Bytes
• Lists
• Tuples
• Sets
• Dictionaries
• 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

8. Decision making Loops in Python


• Python if, if-else, else-if, nested-if
• Python Loops (for, while)
• Python break Keyword
• Python continue Key word
• Python Pass
• 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

12. List in Python


• Create the List
• Accessing the List
• Slicing Lists
• Iterate a list in Python
• List Operations
• Searching elements in a List
• Sorting a list in Python
• Built- in List 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

15. File Handling Using Python


• How to create a File
• Writing data to a File
• Reading data from a file using various read Methods
• Additional file Methods
• Pickling and Unpicking in Python
• Exercise for Practice
16. Exception Handling in Python
• Python Error
• Python Exception
• Handle the Exception
• What is Try, finally and Except
• Use of the Python Built-in Exception
• Most common exception errors in Python
• Examples of most common exceptions in Python
• Exercise for Practice

Python Programming - Advance Level

1. Object Oriented Programming in Python


• Class and Object
• Use of self in OOPS
• Constructors
• Accessor & Mutator in Python
• Inheritance
• Polymorphism
• Method Overriding
• Operator Overloading
• 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

2. Python Database Access


• What is the MySQLdb
• How do I Install MySQLdb
• Database Connection
• CURD Operation
• Exercise for Practice

3. Python Sending Mail


• Sending an Text e-mail using Python
• Sending an HTML e-mail using Python
• Sending Attachments as an E-mail
• Exercise for Practice

4. Python Multithreading
• What is the Thread
• Thread Life Cycle
• Create the Thread
• Exercise for Practice

5. Python GUI Programming


• Intro of the GUI using Tkinter
• Create First GUI Application
• Create label and set Font size and colour
• Create Button and his Event
• Get Input Using Entry Class
• Set the Check State of a Check-button
• Create a Message Box
• Show Warning and Error Messages
• Add a File Dialog
• Live Project (Tk player)

6. Accessing Data from Multiple Source


• Reading and writing data from Local Files (.txt,.csv,.xls, .json, etc)
• Reading data from Remote Files.
• Scraping Tables from Web Pages (.html)
• Making the most of the powerful Read Table Method
• Exercise for Practice

You might also like