
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Akshitha Mote has Published 55 Articles

Akshitha Mote
442 Views
In Python, a class is a collection of objects. It is the blueprint from which objects are being created. It is a logical entity that contains some attributes and methods. Following is an example of a Python class - class Tutorialspoint: print("Welcome to Tutorialspoint.") ... Read More

Akshitha Mote
451 Views
A List in Python is a mutable sequence of elements separated by commas ", ". It is represented by square braces "[ ]".An empty list contains no elements, meaning its length is 0. It is indicated by the square braces with no elements in it.In this article, we will explore various methods ... Read More

Akshitha Mote
185 Views
The garbage collector doesn't track (and collect) all the objects; it can only track objects that are unreachable (have a reference count of zero), and the objects that are involved in circular references. What is a garbage collector? The garbage collector is an automatic (implicit) process that handles memory allocation ... Read More

Akshitha Mote
11K+ Views
A global variable is a variable with global scope, meaning it is visible and accessible throughout the program. The collection of all global variables is known as the global environment or global scope of the program. The variables declared outside the ... Read More

Akshitha Mote
13K+ Views
Let's understand the title: converting a string to a Python class means accessing a Python class using its name stored as a string, allowing dynamic creation of objects at runtime. In this article, we will discuss different ways to convert a string to a Python class object. Using globals() Function ... Read More

Akshitha Mote
11K+ Views
In Python, inheritance is the capability of one class to derive or inherit the properties from another class. The class that derives properties is called the derived class or child class, and the class from which the properties are being derived is ... Read More

Akshitha Mote
7K+ Views
In Python, strings can be defined using single quotes ('), double quotes ("), or triple quotes (''' or """). For example, 'Hello' is a valid string. There are different types of quotes in Python. Each quotation is used in different scenarios as per the requirement. The following are the different ... Read More

Akshitha Mote
470 Views
In Python, the dict.items() and dict.iteritems() methods are used to return a dictionary. The only difference is that the dict.items() returns the keys and value pairs in the form of a list of tuple pairs, whereas the dict.iteritems() returns an iterator over the dictionary’s (key, value) tuple pairs. The dict.items() ... Read More

Akshitha Mote
2K+ Views
In Python, the __init__.py is a special file in python packages. It is used to indicate that how a directory should be treated. When Python encounters a directory during an import, first it looks for the __init__.py file to determine how to initialize the package and what code should be ... Read More

Akshitha Mote
207 Views
In Python, the declarations within a class are not equivalent to those within the __init__() method. Let's discuss the class and __init__() method. A class is a collection of objects. It contains the blueprints or the prototype from which the objects are being created. It ... Read More