- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Swarnava Bhattacharyya has Published 10 Articles

Swarnava Bhattacharyya
28 Views
In the current era of computers and software everywhere, we have thousands of new joinees everyday who want to learn the essential skill of programming. Among beginners, Python is one of the most popular languages to start with, due to its dynamic typing, ease of learning and wide range of ... Read More

Swarnava Bhattacharyya
80 Views
Introduction Python initially started off as Python version2, which is also known as the Legacy Edition. The last edition of Python2 was Python2.7, which went out of service in 2020. Python 3.x was introduced as a replacement, with a host of improvements and bug fixes over the Python 2.x versions. ... Read More

Swarnava Bhattacharyya
2K+ Views
IntroductionBefore Google acquired Youtube, most of it was built using PHP. However, PHP at that time had a lot of restrictions for cross-platform applications, and generated a lot of clutter. After Google’s intervention, Youtube underwent an overhaul, with a major change in interface and security. In this article, we ... Read More

Swarnava Bhattacharyya
204 Views
What is Python Web Scraping? Python Web Scraping is an automatic method of collecting data from the web and its different websites, and performing further operations on the data. These may include storing the data in a database for future references, analyzing the data for business purposes, and providing a ... Read More

Swarnava Bhattacharyya
108 Views
Introduction In Python, the sorted() function is one of the most basic but useful methods to know while getting started with sorting. This function can be used to sort elements of an iterable object, like lists, strings etc. This function sorts both strings as well as numbers. By default it ... Read More

Swarnava Bhattacharyya
55 Views
The coolest Python program I have ever made is Python password hasher. Let's first understand what python password hashing is. What is Password Hashing? Python Password hashing is a form of advanced encryption which can be used to store passwords online safely. In today’s world of everything being online, user ... Read More

Swarnava Bhattacharyya
12K+ Views
What is a Dictionary in Python? A dictionary is Python’s own indigenous representation of a data structure, and can be considered similar to maps in C++. It is a dynamic data structure which stores key-value pairs dynamically, and is mutable. It can be better understood as an associative array, where ... Read More

Swarnava Bhattacharyya
650 Views
Introduction Python is one of the most popularly used languages in today’s world, with its application spread out in a wide range of domains, ranging from applied fields like computer vision and IoT, to Machine Learning and data-based fields such as Data Analysis. Along with this, Python is one of ... Read More

Swarnava Bhattacharyya
5K+ Views
Introduction Python Integers are one of the primary data types, and are used for almost all major mathematical and logical operations. In Python, integers are zero, positive or negative whole numbers without a fractional part and having unlimited precision.They can be expressed in binary, octal and hexadecimal values. In this ... Read More

Swarnava Bhattacharyya
2K+ Views
What is an Interpreter? The Python interpreter works as a computer converter that converts high-level language to low-level machine language, which is essential for the computer to understand the code written by a programmer. Python codes are executed by an interpreter called CPython, which is written in C language and ... Read More