coderz.py

Keep Coding Keep Cheering!

yield Keyword in Python

The yield keyword in Python is used in the body of a function like a return statement, but when a function with a yield statement is called, it returns a generator object instead of a single value. The generator can then be iterated over to retrieve the values produced by the yield statement one at […]

January 13, 2023 | python | No comments

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 create a Thread or create a Thread class object directly and pass a member function from another class. There are two methods for creating the Thread object and specifying the activity to be carried out: […]

December 31, 2022 | python | No comments

Python Class

As we discussed in the previous tutorial, a class is a virtual entity that can be thought of as an object’s blueprint. The class was created when it was instantiated. Let us illustrate this with an example. Assume a class is a building prototype. A building contains all the information about the floor, rooms, doors, […]

December 8, 2022 | python | No comments

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 1966 while in graduate school. Simula was the first programming language to include features of object-oriented programming. It was created in 1967 to create simulation programs in which the most important information was referred to […]

December 8, 2022 | python | No comments

Advertisement