Python programming Bible – From Beginner to Advanced
Python programming Bible – From Beginner to Advanced, available at $64.99, has an average rating of 3.85, with 131 lectures, 18 quizzes, based on 87 reviews, and has 10553 subscribers.
You will learn about Student will learn fundamental and in-depth concept about Python Programming with practical and hands-on examples. The fundamental concept, that student will learn, will help applying the concept to advanced python programming. Students will learn about Python installation, program execution, types and operations, python statement, looping techniques, Function concepts, Class & OOPS concepts, Exception handling and various other concepts of Python. The fundamental concept that student will learn will make them confident to face any interviews for python programming jobs. 230+ assignment and interview questions with answers will make student confident to face python interviews. Student will learn data Structures in Python ( Stacks and Linked List ) Student will learn programming by practice with 5 Coding assignments. This course is ideal for individuals who are Anyone who wants to learn python from scratch or Anyone who wants to take their python programming knowledge to next level with theory and hands-on practice examples. or Anyone who would like to learn by practice with 230+ assignment question. It is particularly useful for Anyone who wants to learn python from scratch or Anyone who wants to take their python programming knowledge to next level with theory and hands-on practice examples. or Anyone who would like to learn by practice with 230+ assignment question.
Enroll now: Python programming Bible – From Beginner to Advanced
Summary
Title: Python programming Bible – From Beginner to Advanced
Price: $64.99
Average Rating: 3.85
Number of Lectures: 131
Number of Quizzes: 18
Number of Published Lectures: 131
Number of Published Quizzes: 18
Number of Curriculum Items: 149
Number of Published Curriculum Objects: 149
Original Price: ₹7,900
Quality Status: approved
Status: Live
What You Will Learn
- Student will learn fundamental and in-depth concept about Python Programming with practical and hands-on examples.
- The fundamental concept, that student will learn, will help applying the concept to advanced python programming.
- Students will learn about Python installation, program execution, types and operations, python statement, looping techniques, Function concepts, Class & OOPS concepts, Exception handling and various other concepts of Python.
- The fundamental concept that student will learn will make them confident to face any interviews for python programming jobs.
- 230+ assignment and interview questions with answers will make student confident to face python interviews.
- Student will learn data Structures in Python ( Stacks and Linked List )
- Student will learn programming by practice with 5 Coding assignments.
Who Should Attend
- Anyone who wants to learn python from scratch
- Anyone who wants to take their python programming knowledge to next level with theory and hands-on practice examples.
- Anyone who would like to learn by practice with 230+ assignment question.
Target Audiences
- Anyone who wants to learn python from scratch
- Anyone who wants to take their python programming knowledge to next level with theory and hands-on practice examples.
- Anyone who would like to learn by practice with 230+ assignment question.
Python programming bible course is divided into 8 modules that covers the python programming with theory and practical examples. This is lectures series of python programming from beginner to advanced topics. Jupyter files and PPT files used in this lecture have been uploaded.
In addition to theory and handson, 230+ assignment and interview question with answers will prepare student for any interview.
Following are the module in the course :
– Python Introduction & History
– Installation & Program Execution
– Python Data Types and processing
– Python Statement
– Python Function
– Python Module and Module Package
– Class and OOPs concepts
– Exception handling
Python Introduction & History
The course starts with basic python introduction and history of python. It also answers basic question on why we should learn python when there are so many programming languages available in the market. It also delves into what can be done in python and what are the areas where python does not score very well.
Installation and Program Execution
This module covers details about the python installation using anaconda package and steps of python program execution. The python programmer will be able to write their first “hello world” program in python using Jupyter editor and Python shell.
Python Data Types and processing
This covers python built-in object types like Numbers- integer, float, complex number, String etc. It also covers details on list, tuple, dictionary, set and file operations that can be done in python. Dynamic typing concept is investigated here that is fundamentally different from other programming language.
Python Statement
This module covers basic IF, WHILE and FOR loop that is at the heart of python compound statement. We will also go through print, range, zip, enumerate function that is provided by python for looping operations.Iteration and Comprehension is also covered here to traverse the container object in faster and efficient way.
Python Function
Python function is natural progression after the study of python statement. In this module we will go through the details of various function, nested function and various types of variables like global, local and non-local. We will also go through the details about a function that takes one or multiple input and how it returns one and multiple outputs. We will also go through the advance concept like lambda function, map, filter & reduce concepts and generator & extended generator concepts.
Python Module and Module Package
This module explains module coding and module package. It covers the concept about how and when to use IMPORT, FROM and RELOAD commands.
Python Class and OOPs
This module starts with basic introduction of Class and object oriented programming in python. It also includes concept of inheritance, abstract class and operator overloading with theory and practical examples.
Python Exception handling
This is last module of this course that covers the concepts of exception handling framework in python. We will go through the usage of TRY, EXCEPT, ELSE, FINALLY, RAISE and ASSERT examples. We will also see how to use nested exception handling and how and why to use class hierarchy in exception handling.
Course Curriculum
Chapter 1: Python programming Bible – Course Overview
Lecture 1: Course Overview and Course Materials
Chapter 2: Python Introduction
Lecture 1: Python History & Introduction
Lecture 2: Why to use Python ?
Lecture 3: What can be done in Python ?
Chapter 3: Python Installation & Program Execution
Lecture 1: Python Installation
Lecture 2: Python Installation Summary
Lecture 3: Installation Component & Python Interpreter
Lecture 4: Python Program Execution
Chapter 4: Python Data Types & Processing ( Introduction)
Lecture 1: Introduction to Python data types
Lecture 2: HandsOn to Python DataTypes
Chapter 5: Python Data Types & Processing (Numbers)
Lecture 1: Introduction to integer, float & complex numbers, built-in function, expressions
Lecture 2: Demo (variable create & assign, division, expression, normal & chain comparison)
Lecture 3: Demo (Complex,Hex,octal,bin no, bitwise operation, builtin function(pow,abs,min)
Lecture 4: Introduction and Demo to Built-in Module ( Math & Random )
Lecture 5: Introduction and demo to Decimal, Fraction and Boolean.
Lecture 6: Introduction and demo of SETs
Chapter 6: Python Data Types & Processing (Dynamic Typing)
Lecture 1: Intro and Demo to Dynamic Typing. Garbage Collection, Cache & Reference Count
Chapter 7: Python Data Types & Processing (Python String)
Lecture 1: Introduction to Python String
Lecture 2: Demo for String Creation, Escape Sequence & Raw String
Lecture 3: Writing comment in python
Lecture 4: Demo ( Concatenation, Repeat, length, Membership operator-IN)
Lecture 5: Demo (Indexing, Slicing and Extended slicing )
Lecture 6: Demo ( Immutability, find, replace, split )
Lecture 7: Demo ( strip, case, start & end character or string )
Lecture 8: Demo ( string conversion, alignment, integer and float formatting)
Lecture 9: Demo (Relative, Position, Keyword, dataype based, dictionary based Formatting )
Chapter 8: Python Data Types & Processing (Python List)
Lecture 1: Introduction to Python List
Lecture 2: Demo (length, index, slice operator, repeat, update or in-place changes in list)
Lecture 3: Demo (index, slice, extended slice, sort, reverse, append, pop, basic matrix )
Lecture 4: Demo ( Extend, reverse, index, remove, count, delete )
Chapter 9: Python Data Types & Processing (Python dictionary and Tuple)
Lecture 1: Introduction to dictionary
Lecture 2: Demo of dictionary
Lecture 3: Introduction to Tuple
Lecture 4: Hands on for Tuple
Lecture 5: Introduction and Demo of namedtuple
Chapter 10: Python Data Types & Processing (File Operation in Python)
Lecture 1: Introduction to File operation in python
Lecture 2: HandsOn to file operation in python
Lecture 3: EVAL function – convert a string to python object
Lecture 4: Demo (EVAL function read and write python object in file )
Lecture 5: Demo (PICKLE function read and write python object in file )
Lecture 6: Demo (JSON function read and write python object in file )
Chapter 11: Python Statement introduction and Assignment
Lecture 1: Introduction to Python Statement
Lecture 2: Introduction to assignment statement in python
Lecture 3: Demo to Python assignment statement
Lecture 4: Consideration during extended assignment
Lecture 5: Introduction and demo for Augment assignment
Chapter 12: Python Statement (print statement in python)
Lecture 1: Introduction and demo for print statement in python
Lecture 2: Introduction and demo for 'file' parameter in print statement
Chapter 13: Python Statement – Looping statement (IF, While and For Loop)
Lecture 1: Introduction to IF statement in Python
Lecture 2: Demo of IF statement
Lecture 3: Nested IF statement in python
Lecture 4: Shorter IF syntax in python
Lecture 5: Introduction to WHILE loop in python
Lecture 6: Demo of WHILE loop in python
Lecture 7: Introduction and Demo of FOR loop in python
Lecture 8: Demo of FOR loop with List, Tuple, Dictionary and String
Lecture 9: Demo of FOR loop with multiple and extended assignment
Lecture 10: Demo of FOR loop with RANGE function
Chapter 14: Python Statement (Range, ZIP and Enumerate function in python)
Lecture 1: Introduction to range, zip and enumerate function
Lecture 2: Demo of range and enumerate function in python
Lecture 3: Demo of zip function in python
Chapter 15: Python Statement (Iteration and Comprehension in python)
Lecture 1: Introduction to Iteration in python
Lecture 2: Demo of iteration with FILE object
Lecture 3: Demo of iteration with List and dictionary object
Lecture 4: Introduction to List Comprehension in python
Lecture 5: Demo of List comprehension in python
Chapter 16: Python Function
Lecture 1: Introduction to Python Function
Lecture 2: Demo of Python function
Lecture 3: Introduction and demo of Polymorphic behavior in Python function.
Lecture 4: Introduction to Function Scope (Global, local, non-local variable )
Lecture 5: Demo to Global and local variable in function
Lecture 6: Demo to nonlocal variable in function
Lecture 7: Introduction and demo of how to update nonlocal variable.
Instructors
-
Prashant Shekhar
Python Trainer | NIT and ISB Hyd ( CBA ) Alumni
Rating Distribution
- 1 stars: 1 votes
- 2 stars: 3 votes
- 3 stars: 11 votes
- 4 stars: 30 votes
- 5 stars: 42 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Top 10 Video Editing Courses to Learn in November 2024
- Top 10 Music Production Courses to Learn in November 2024
- Top 10 Animation Courses to Learn in November 2024
- Top 10 Digital Illustration Courses to Learn in November 2024
- Top 10 Renewable Energy Courses to Learn in November 2024
- Top 10 Sustainable Living Courses to Learn in November 2024
- Top 10 Ethical AI Courses to Learn in November 2024
- Top 10 Cybersecurity Fundamentals Courses to Learn in November 2024
- Top 10 Smart Home Technology Courses to Learn in November 2024
- Top 10 Holistic Health Courses to Learn in November 2024
- Top 10 Nutrition And Diet Planning Courses to Learn in November 2024
- Top 10 Yoga Instruction Courses to Learn in November 2024
- Top 10 Stress Management Courses to Learn in November 2024
- Top 10 Mindfulness Meditation Courses to Learn in November 2024
- Top 10 Life Coaching Courses to Learn in November 2024
- Top 10 Career Development Courses to Learn in November 2024
- Top 10 Relationship Building Courses to Learn in November 2024
- Top 10 Parenting Skills Courses to Learn in November 2024
- Top 10 Home Improvement Courses to Learn in November 2024
- Top 10 Gardening Courses to Learn in November 2024