Posts by Ranjeet V
Author Biographical Info: Not available
In this tutorial, we will learn about the introspection of the Python code. Introspection refers to the ability to determine the properties related to objects at runtime. We will d.... Read More
This tutorial will teach you about the Python help() function. The help() function displays the documentation of an object. This is a built-in function and prints a help page when .... Read More
Hello guys, in this tutorial, we are going to learn about getpass() and getuser() functions in Python. Both of these functions are present in the getpass module of Python. These fu.... Read More
In this tutorial, we are going to learn how we can create directories using os.makedirs() in Python. As we know, the OS module in Python helps us to interact with the operating sys.... Read More
In object-oriented programming, multiple inheritance is the property, where a class inherits properties of more than one class. Java does not support multiple inheritance through c.... Read More
In this article, we are going to learn how to get phone number details in Python. There is a very interesting and useful library with the name ‘phonenumbers’. We will b.... Read More
Hello everyone, in this post, we will talk about the __reversed__ magic method in Python with examples. Like other magic methods, this special method also begins and ends with a pa.... Read More
ios::good() and ios::bad() functions in C++ are used to check the state of the stream whether it is good or bad to do our task. Both of these are defined in ios library. These func.... Read More