
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
Niharikaa Aitam has Published 93 Articles

Niharikaa Aitam
3K+ Views
To run a Python file in a directory, we generally use the Python or python3 command. However, it only runs a single file at a time. But executing one file each on a shell script seems hectic. Therefore, we must come up with a way to execute all files present ... Read More

Niharikaa Aitam
8K+ Views
What are Python File Extensions? Python file extensions are the suffixes that are added to the end of file names, which indicate the type of content inside the file and how it relates to the Python programming environment. These extensions help the interpreter, operating system, and developers understand how to ... Read More

Niharikaa Aitam
6K+ Views
In Python, both single quotes (') and double quotes (") are used to define string literals, and they function in the same way. For example, if a string contains a single quote character, like in a contraction, i.e., it’s by using double quotes avoids the need for escape characters by ... Read More

Niharikaa Aitam
2K+ Views
Through the command line, we can easily create dynamic scripts that modify or generate files based on user input. This functionality is useful for generating logs, exporting data, or saving outputs from calculations. The following are the basic steps we need to follow to write data into a file from ... Read More

Niharikaa Aitam
12K+ Views
Reading files from the command line is a common task in many Python scripts and automation workflows. Whether we’re building a simple utility to process text files or developing a complex data analysis tool that being able to accept file input directly from the command line, which enhances the flexibility ... Read More

Niharikaa Aitam
12K+ Views
A statement is a logical instruction in Python that the Python interpreter can read and execute. It could be an expression or an assignment statement in Python. Python's assignment statement is fundamental. It specifies how an expression generates and stores objects. In a simple assignment, we create new variables, assign ... Read More

Niharikaa Aitam
25K+ Views
Importing Python Modules by Full Path Python has various tools to import modules dynamically, where the full path is accessible. In this article, we will explore various methods to import Python modules when the full path is given, and each method has its own advantages for various use cases. In ... Read More

Niharikaa Aitam
5K+ Views
In Python, it is possible to source one Python file from another, which enables us to share data between scripts. In this article, we will go through the different ways to source a Python file from another Python file. Understanding Python File Importing In Python, the process of importing makes ... Read More

Niharikaa Aitam
14K+ Views
The common header format of Python files is a simple and essential element in any Python script. The Header Format is just an introduction that provides context. In Python, we commonly use a docstring as the header format. A docstring is a special kind of comment enclosed within triple ... Read More

Niharikaa Aitam
59K+ Views
In Python, it is often necessary to execute another file. This is common in cases such as running helper scripts, triggering workflows, or executing test cases. Python provides several ways to execute one file using another. Depending on the requirement, whether we want to reuse functions, execute a file directly, ... Read More