
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
Atharva Shah has Published 80 Articles

Atharva Shah
819 Views
To make it simple for people to browse and comprehend the goal of the site, it's critical to have a clear and succinct site header, site title, and index title when constructing a Django project. You must specify the site header, site title, and index title in your Django application's ... Read More

Atharva Shah
184 Views
Introduction The incorporation of web components like Sitemaps and RSS (Really Simple Syndication) Feeds can provide a multitude of benefits such as enhancing user accessibility, augmenting website content consumption, and improving search engine performance. Developers can leverage Django to streamline the process of constructing web applications, resulting in the creation ... Read More

Atharva Shah
1K+ Views
Python dictionaries are flexible data structures that hold key-value pairs effectively. A nested dictionary is a hierarchical data structure to organize and manage large amounts of data. This article shows how to construct a nested dictionary from a given list, enabling dictionary users to perform a variety of tasks. ... Read More

Atharva Shah
145 Views
In the realm of GUI programming, wxPython has emerged as a powerful and versatile library, empowering developers to craft stunning graphical user interfaces with ease. Among the many essential components, toolbars play a vital role in providing users with quick access to various functionalities. In this tutorial, we'll dive into ... Read More

Atharva Shah
981 Views
Python's key data structures are lists and tuples. Once elements of tuples are set they cannot be changed. This is called immutability. But list elements can be modified after initialization. When dealing with data that needs to be grouped together, a for loop is used to create tuple lists. Lists ... Read More

Atharva Shah
2K+ Views
This walkthrough is all about creating a dictionary of tuples in Python. This data structure stores key-value pairs. By combining dictionaries and tuples, a dictionary of tuples can be created. The benefit is organized and accessible data in a structured format. Becomes easy to represent multiple values for each key, ... Read More

Atharva Shah
3K+ Views
This tutorial is all about string slicing. This involves creating a new string using the first and last two characters of a given string. Examples include using string slicing to extract the first two characters of a string. Such as "he" and "lo, " and combining these slices to create ... Read More

Atharva Shah
378 Views
In Python, creating a list of tuples is a flexible data structure for storing many items. Tuples are immutable, ordered collections that are suitable for grouping similar items. This tutorial will guide you through this with several examples to build and handle lists of tuples. Understanding Tuples ... Read More

Atharva Shah
2K+ Views
GTK+ 3 is a sophisticated and used graphical user interface library (GUIs). It comes with an extensive range of tools and widgets for creating cross-platform interactive and appealing apps. Let us concentrate on the fundamentals of GTK+ 3 and its box layout to manage and arrange widgets within a ... Read More

Atharva Shah
216 Views
This article contrasts these two web frameworks (Django and Flask), highlighting their similarities and differences as well as their features, benefits, and drawbacks, in order to assist you in selecting a paradigm for your project. Choosing the ideal web framework for your project as a software engineer or developer can ... Read More