@honeyb9698

πŸ’» (0:01:00) 0 - Course Introduction
πŸ’» (0:02:29) 1 - Introduction to Python (For Absolute Beginners)
πŸ’» (0:10:41) 2 - How to Install Python 3 on Windows 10
πŸ’» (0:16:19) 3 - Basic Math, Mathematical Operators and Python Expressions
πŸ’» (0:28:40) 4 - Python Variables and Types
πŸ’» (0:40:37) 5 - Python print() and input() Function
πŸ’» (0:53:05) 6 - Python Built-in Functions and Built-in Module
πŸ’» (1:00:10) 7 - Creating and Executing your First Python Script (Run .py file)
πŸ’» (1:12:36) 8 - Install PyCharm ( Python IDE ) on Windows 10 + First Project
πŸ’» (1:20:36) 9 - Python Strings and Comments
πŸ’» (1:35:14) 10 - Boolean, Comparison Operators and Logical Operators in Python
πŸ’» (1:46:08) 11 - Python IF ELSE Statements
πŸ’» (1:54:53) 12 - Python IF...ELIF...ELSE Statements + nested IF statements
πŸ’» (2:03:41) 13 - Python Lists
πŸ’» (2:13:37) 14 - Python Tuples
πŸ’» (2:20:22) 15 - Python Sets
πŸ’» (2:33:54) 16 - Python Dictionary
πŸ’» (2:42:59) 17 - Python Slice and Negative index
πŸ’» (2:53:44) 18 - Python while Loop
πŸ’» (3:03:50) 19 - Python for Loop
πŸ’» (3:11:43) 20 - Python break, continue statement
πŸ’» (3:18:28) 21 - Python Functions
πŸ’» (3:30:47) 22 - Default Arguments, *args and **kwargs (Variable-length Arguments)
πŸ’» (3:38:27) 23 - Introduction to Object-Oriented Programming (OOP)
πŸ’» (3:48:24) 24 - Classes and Objects in Python (OOP)
πŸ’» (3:58:23) 25 - Python _init_ and self in class
πŸ’» (4:10:18) 26 - Is it possible to define multiple constructors in Python?
πŸ’» (4:18:14) 27 - Python Encapsulation
πŸ’» (4:29:39) 28 - Private methods in Python
πŸ’» (4:35:48) 29 - Python Inheritance
πŸ’» (4:50:47) 30 - How To Create Modules in Python 3
πŸ’» (5:03:10) 31 - Python Multiple Inheritance
πŸ’» (5:08:38) 32 - Python super()
πŸ’» (5:16:15) 33 - Python Composition
πŸ’» (5:21:51) 34 - Python Aggregation + Difference in Aggregation and Composition
πŸ’» (5:28:54) 35 - Python Abstract Classes
πŸ’» (5:37:16) 36 - Python Exception handling + Python Try Except
πŸ’» (5:52:06) 37 - Try Except Else Finally (Python Exception handling)
πŸ’» (5:57:47) 38 - Raising Exceptions In Python
πŸ’» (6:03:50) 39 - Raising Custom Exceptions (Writing and Using Custom Exceptions)
πŸ’» (6:08:30) 40 - Idea behind : if _name_ == "__main__"
πŸ’» (6:15:38) 41 - Create a Text File and Write in It Using Python
πŸ’» (6:28:50) 42 - Reading Files in Python
πŸ’» (6:40:13) 43 - Working With JSON Data in Python
πŸ’» (6:52:00) 44 - Python Iterators
πŸ’» (7:06:19) 45 - Python Generators
πŸ’» (7:22:13) 46 - Command Line Arguments in Python with argparse
πŸ’» (7:40:24) 47 - Lambda, filter, reduce and map
πŸ’» (7:58:54) 48 - Python Closures + nested functions
πŸ’» (8:12:37) 49 - Python Decorators
πŸ’» (8:32:25) 50 - Python Operator Overloading
πŸ’» (8:49:06) 51 - An Introduction to Python Debugger (pdb)
πŸ’» (9:10:00) 52 - How to use PyCharm to debug Python code
πŸ’» (9:18:16) 53 - How to use Pip and PyPI for managing Python packages
πŸ’» (9:25:55) 54 - How to Install Pip packages using PyCharm
πŸ’» (9:30:51) 55 - Global, Local and Nonlocal variables in Python

@Z0ndor

This is the most comprehensive and detailed Python Course I have seen so far. Great detail and examples/testing of why or how something works. Great tutorial.

@ravithothadri8887

Just finished the first hour of lecture. I am at the point of taing user input using input function. So excellent. Anyone can understand and learn. Thanks Bro and may the God bless you.

@pademo57

Even though this video is almost 3 years old, I learned a lot of things that were not explained but others. Thanks and I hope you keep adding more videos!

@hackersadda7093

I complete this course it takes me 4 days to do this and now it make me to move on opencv thanks for this tutorial keep helping us and again I thanks you from core of my heart for this awesome tutorialπŸ‘πŸ‘πŸ‘πŸ‘πŸ‘ŒπŸ‘ŒπŸ‘Œ

@Mr_thugs

this is the best python tutorial I have ever seen..hats offπŸŽ‰

@minddecomp

The best python beginner course on tube.

@kyleyessick7742

I'm in Python and college right now I just wanted to thank you for this video because my professor left a lot of stuff on the table when teaching and you video filled in the gaps and saved my ass. Thank you.

@cjdlv8909

I think your statement on a for loop may be incorrect at 3:06:40, when you say: the for loop places the first value in x and then looks at the list to see if x is in the list, this is incorrect. The for loop will iterate through the number of items in the list, it does not check to see if the value is in the list. In your example, the for loop for A, will iterate 6 times within the for loop. If you were to add 1 to x within the for loop, when x equals 6 it will print 6, even though 6 is not is the A variable. for x in A: x += 1 print(x): will print 1,2,3,4,5,6. Because there are 6 values in A, the for loop will execute 6 times, it does not check to see if the value of x is in the list. Your video is excellent, and I highly recommend it.

@37.vigneshgopal3

For your information at 36:31. 10e10 equals 10 multiplied by 10 to the power 11. Which means (10e1 = 100;  10e3 = 10000)

@rajkumarsingh...2212

This video is 2 years old....but teaches more than any other tutorial which are present in 2021.....

Loved it sir... and became a big fan of yours....

@sivapuppala1112

Very detailed and clear. Why you are not popular 😑😑😑😑 I don't know...

@ojesvikanumuri759

36:12 - There's a small problem with your interpretation. 10e10 is not 10 power 10 rather it is 10*(10 power 10). e is 10, I checked it for other values. For example, when you input 2e3 then the answer shown is 2000 which is possible when e equals 10.

@chadmace3355

Needed a crash course in Python and this NAILED IT.       The time you spent to put this together is appreciated!

@sudipsen6376

Awesome course ..Even some paid courses dont have so much detail information of every topic

@novapse

βœ” Table of Contents βœ”
πŸ’» (0:01:00) 0 - Course Introduction
πŸ’» (0:02:29) 1 - Introduction to Python (For Absolute Beginners)
πŸ’» (0:10:41) 2 - How to Install Python 3 on Windows 10
πŸ’» (0:16:19) 3 - Basic Math, Mathematical Operators and Python Expressions
πŸ’» (0:28:40) 4 - Python Variables and Types
πŸ’» (0:40:37) 5 - Python print() and input() Function
πŸ’» (0:53:05) 6 - Python Built-in Functions and Built-in Module
πŸ’» (1:00:10) 7 - Creating and Executing your First Python Script (Run .py file)
πŸ’» (1:12:36) 8 - Install PyCharm ( Python IDE ) on Windows 10 + First Project
πŸ’» (1:20:36) 9 - Python Strings and Comments
πŸ’» (1:35:14) 10 - Boolean, Comparison Operators and Logical Operators in Python
πŸ’» (1:46:08) 11 - Python IF ELSE Statements
πŸ’» (1:54:53) 12 - Python IF...ELIF...ELSE Statements + nested IF statements
πŸ’» (2:03:41) 13 - Python Lists
πŸ’» (2:13:37) 14 - Python Tuples
πŸ’» (2:20:22) 15 - Python Sets
πŸ’» (2:33:54) 16 - Python Dictionary
πŸ’» (2:42:59) 17 - Python Slice and Negative index
πŸ’» (2:53:44) 18 - Python while Loop
πŸ’» (3:03:50) 19 - Python for Loop
πŸ’» (3:11:43) 20 - Python break, continue statement
πŸ’» (3:18:28) 21 - Python Functions
πŸ’» (3:30:47) 22 - Default Arguments, *args and **kwargs (Variable-length Arguments)
πŸ’» (3:38:27) 23 - Introduction to Object-Oriented Programming (OOP)
πŸ’» (3:48:24) 24 - Classes and Objects in Python (OOP)
πŸ’» (3:58:23) 25 - Python _init_ and self in class
πŸ’» (4:10:18) 26 - Is it possible to define multiple constructors in Python?
πŸ’» (4:18:14) 27 - Python Encapsulation
πŸ’» (4:29:39) 28 - Private methods in Python
πŸ’» (4:35:48) 29 - Python Inheritance
πŸ’» (4:50:47) 30 - How To Create Modules in Python 3
πŸ’» (5:03:10) 31 - Python Multiple Inheritance
πŸ’» (5:08:38) 32 - Python super()
πŸ’» (5:16:15) 33 - Python Composition
πŸ’» (5:21:51) 34 - Python Aggregation + Difference in Aggregation and Composition
πŸ’» (5:28:54) 35 - Python Abstract Classes
πŸ’» (5:37:16) 36 - Python Exception handling + Python Try Except
πŸ’» (5:52:06) 37 - Try Except Else Finally (Python Exception handling)
πŸ’» (5:57:47) 38 - Raising Exceptions In Python
πŸ’» (6:03:50) 39 - Raising Custom Exceptions (Writing and Using Custom Exceptions)
πŸ’» (6:08:30) 40 - Idea behind : if _name_ == "__main__"
πŸ’» (6:15:38) 41 - Create a Text File and Write in It Using Python
πŸ’» (6:28:50) 42 - Reading Files in Python
πŸ’» (6:40:13) 43 - Working With JSON Data in Python
πŸ’» (6:52:00) 44 - Python Iterators
πŸ’» (7:06:19) 45 - Python Generators
πŸ’» (7:22:13) 46 - Command Line Arguments in Python with argparse
πŸ’» (7:40:24) 47 - Lambda, filter, reduce and map
πŸ’» (7:58:54) 48 - Python Closures + nested functions
πŸ’» (8:12:37) 49 - Python Decorators
πŸ’» (8:32:25) 50 - Python Operator Overloading
πŸ’» (8:49:06) 51 - An Introduction to Python Debugger (pdb)
πŸ’» (9:10:00) 52 - How to use PyCharm to debug Python code
πŸ’» (9:18:16) 53 - How to use Pip and PyPI for managing Python packages
πŸ’» (9:25:55) 54 - How to Install Pip packages using PyCharm
πŸ’» (9:30:51) 55 - Global, Local and Nonlocal variables in Python

@Maazin_Moh

This channel best channel 
I have benefited a lot 
From hargeisa thank you very much

@maysammansor8290

This is great work. Appreciate this comprehensive course. I learned a lot.

@Howto-cz7yf

sir your way of learning  is awsome,english is not my first language but i pick every word clearly,hope will learn it,thank u

@thedailyscoop254

I'm quiting java to start python, java is so complicated. Thanks for this tutorial sir