
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
Tarun Singh has Published 104 Articles

Tarun Singh
5K+ Views
Parsing local HTML files in Python is a common task when dealing with web scraping, data analysis, and automation. In this article, we will learn how to parse local HTML files in Python. We will explore various techniques to extract data from an HTML file using Python. We will ... Read More

Tarun Singh
1K+ Views
When working with large datasets, one common PySpark operation is to order a DataFrame by multiple columns. You can prioritize the sorting based on various criteria when you sort data based on multiple columns. Using PySpark, we'll look at a few different approaches in this article. In this article, we ... Read More

Tarun Singh
3K+ Views
Pygame is a powerful library that allows developers to create engaging 2D games using the Python programming language. One fundamental aspect of game development is character movement. In this article, we will learn how to move your game character around in Pygame. This article is for everyone whether you're ... Read More

Tarun Singh
3K+ Views
Python is a popular programming language that is used extensively in the field of data analysis, machine learning, and scientific computing. When working on projects, it is common to work with multiple files simultaneously. In Python, there are different approaches to opening two or more files at once. In ... Read More

Tarun Singh
683 Views
Moving a list of folders with subfolders is a common task when working with large files or organizing data. Python offers several approaches to handle this task, each with their own advantages and disadvantages. In this article, we will learn how to move a list of folders with subfolders ... Read More

Tarun Singh
2K+ Views
Data in today’s time is generated in large volumes, and organizing that data can be a challenging task. One of the most common issues people face is merging multiple folders into one. It can be quite frustrating to search for a specific file when you have multiple folders to navigate ... Read More

Tarun Singh
11K+ Views
Excel is one of the most popular tools for data analysis and management. Often, we need to merge multiple Excel files into a single file for analysis or sharing with others. Manually merging these files can be time−consuming and prone to errors, especially when dealing with large datasets. Luckily, Python ... Read More

Tarun Singh
704 Views
If you work with data, you've probably had to deal with the challenge of merging multiple files into one cohesive dataset. This task can be particularly difficult if you're working with tab−separated values (TSV) files. Fortunately, the Python Pandas library provides a straightforward solution for merging TSV files by a ... Read More

Tarun Singh
2K+ Views
In the world of image processing, merging two or more images together is a common operation. One common use case is to merge a transparent PNG image with another image to create a composite image that contains both images. In this article, we will learn how to merge a ... Read More

Tarun Singh
4K+ Views
NumPy is a powerful library in Python for numerical computing that provides an array object for the efficient handling of large datasets. Often, it is necessary to normalize the values of a NumPy array to ensure they fall within a specific range. One common normalization technique is to scale the ... Read More