Python - Basic Articles
Prerequisite: Tkinter Python offers multiple options for developing GUI (Graphical User Interface). Out of all the GUI methods, Tkinter is the most commonly used method.… Read More
Panclus is a very useful python library for the programmers to convert text to speech in several languages, translating the text as well as predicting… Read More
A Scatter plot is a type of data visualization technique that shows the relationship between two numerical variables. For plotting to scatter plot using pandas… Read More
Given a binary matrix of dimensions N * M, the task is to find the indices of the matrix such that traversal of the given… Read More
Class-based views help in composing reusable bits of behavior. Django REST Framework provides several pre-built views that allow us to reuse common functionality and keep… Read More
Whether you’re seeking a career in Machine Learning or Data Science or Website Development – the knowledge of Python Language is very much relevant in… Read More
Given a list, the task is to write a python program to cube all the list elements. Input: [1, 2, 3, 4] Output: [1, 8,… Read More
Given a string, the task is to write a Python program to print the last word in that string. Examples: Input: sky is blue in… Read More
Matplotlib is easy to use and an amazing visualizing library in Python. It is built on NumPy arrays and designed to work with the broader… Read More
This article revolves around how can you change your default Django SQLite-server to PostgreSQL. PostgreSQL and SQLite are the most widely used RDBMS relational database… Read More
In Python, sets are an unordered and mutable collection of data type what does not contains any duplicate elements. In this article, we will learn… Read More
Given a String list, the task is to write a Python program to convert uppercase strings if the length is greater than K. Examples: Input… Read More
The plotly library is an interactive open-source library. This can be a very helpful tool for data visualization and understanding the data simply and easily.… Read More
The % symbol is used in Python with a large variety of data types and configurations. %s specifically is used to perform concatenation of strings… Read More
Given 2 Strings, our task is to check overlapping of one string’s suffix with prefix of other string.  Input : test_str1 = "Gfgisbest", test_str2 =… Read More
In this article, we are going to discuss various approaches to keep old content while writing files in Python. We can keep old content while… Read More
PNG and JPG formats are used for image illustrations. Both the formats are used to provide good compatibilities with certain types of images like PNG… Read More
Python is a high-level, general-purpose, and very popular programming language. Python programming language (the latest Python 3) is being used in web development, Machine Learning… Read More
Given a Dictionary, the task is to write a python program to swap positions of dictionary items. The code given below takes two indices and… Read More
In this article, we will see how to convert a PDF to Excel or CSV File Using Python. It can be done with various methods,… Read More