object

yield Keyword in Python

The yield keyword in Python is used in the body of a function like a return statement, but when a…

1 year ago

Thread class and its Object

The Thread class in Python's threading module is used to create and manage threads. We can extend this class to…

1 year ago

Python Class

As we discussed in the previous tutorial, a class is a virtual entity that can be thought of as an…

1 year ago

Object-Oriented Programming in Python

What Is Object-Oriented Programming? Alan Kay coined the term "Object-Oriented Programming" (OOP), also known as oops concepts in Python, in…

1 year ago