
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
Pranathi M has Published 10 Articles
Pranathi M
1K+ Views
What is Variable Scope in Python? Variable scope in Python defines where a variable can be assigned or modified in your code. It determines the visibility and lifetime of variables, controlling which parts of your program can use particular variables. Variable scope in Python provides many benefits, which include - ... Read More
Pranathi M
391 Views
A list is a data structure in Python that is a mutable or changeable ordered sequence of elements. A list's items are any elements or values that are contained within it. Lists are defined by having values inside square brackets [], just as strings are defined by characters inside quotations. ... Read More
Pranathi M
6K+ Views
Python has built in file creation, writing, and reading capabilities. In Python, there are two sorts of files that can be handled: text files and binary files (written in binary language, 0s, and 1s). In this article, we'll look at how to write into a file. Firstly, we will have ... Read More
Pranathi M
7K+ Views
Python has a built-in file creation, writing, and reading capabilities. In Python, there are two sorts of files that can be handled: text files and binary files (written in binary language, 0s, and 1s). Let us understand how to open a file in python. Python is a good general purpose ... Read More
Pranathi M
934 Views
Python has built in file creation, writing, and reading capabilities. In Python, there are two sorts of files that can be handled: text files and binary files (written in binary language, 0s, and 1s). Let us understand how to open a file in python. Python is a good general purpose ... Read More
Pranathi M
6K+ Views
Python introduces new features with every latest version. Therefore, to check what version is currently being used we need a way to retrieve them. If a user implements features without the correct version, it can generate random issues. We can check the version using few different methods. These methods are ... Read More
Pranathi M
797 Views
Python allows you to save definitions to a file and then use them in a script or interactive instance of the interpreter. A module is a file that contains definitions that can be imported into other modules or the main module. So, a Python module is nothing more than a ... Read More
Pranathi M
6K+ Views
Easy Install is a python module that is bundled with setuptools (easy_install) that allows you to download, compile, install, and manage Python packages automatically. It was included in setuptools in 2004 and is now deprecated. It was remarkable at the time for automatically installing dependencies and installing packages from PyPI ... Read More
Pranathi M
3K+ Views
Functions accept arguments that can contain data. The function name is followed by parenthesis that list the arguments. Simply separate each argument with a comma to add as many as you like. As the name implies, mandatory arguments are those that must be given to the function at the time ... Read More
Pranathi M
7K+ Views
Python's OS module includes functions for creating and removing directories (folders), retrieving their contents, altering, and identifying the current directory, and more. To interface with the underlying operating system, you must first import the os module. The location (path) of the executing program code can be obtained in Python. py ... Read More