Question 1. Find the length of the longest rod that can be placed in a room 12 m long, 9 m broad and 8 m… Read More
Category Archives: Technical Scripter
Given an integer N (N &e; 3), the task is to split all numbers from 1 to N into two subsequences such that the sum… Read More
Given a string M consisting of letters, digits and symbols, the task is to convert the string to a valid mobile number by removing all… Read More
Given a number of int type, the task is to write a Python program to convert it to exponential. Examples: Input: 19 Output: 1.900000e+01 Input:… Read More
In Python to open an image, image editing, saving that image in different formats one additional library called Python Imaging Library (PIL). Using this PIL… Read More
Matplotlib is the most popular Python library for plotting graphs and visualizing our data. In Matplotlib we can create multiple plots by calling them once.… Read More
Tkinter Label is used to display one or more lines, it can also be used to display bitmap or images. In this article, we are… Read More
Given a list of names, the task is to write a Python program to sort the list of names by their last name. Examples: Input:… Read More
In this article, we are going to discuss how to get list parameters from a function in Python. The inspect module helps in checking the… Read More
Prerequisites: Seaborn Seaborn is a Python library that is based on matplotlib and is used for data visualization. It provides a medium to present data… Read More
Prerequisites: Seaborn A colorbar is a rectangular color scale that is used to interpret the data of a heatmap. By default, it is of the… Read More
Python boolean type is one of the built-in data types provided by Python, which represents one of the two values i.e. True or False. Generally,… Read More
Python Imaging Library (expansion of PIL) is the de facto image processing package for the Python language. It incorporates lightweight image processing tools that aid… Read More
Given a float number, the task is to write a Python program to convert float to exponential. Examples: Input: 19.0 Output: 1.900000e+01 Input: 200.2 Output:… Read More
Break a long line into multiple lines, in Python, is very important sometime for enhancing the readability of the code. Writing a really long line… Read More