Python - Medium Articles
Plotly is a Python library that is used to design graphs, especially interactive graphs. It can plot various graphs and charts like histogram, barplot, boxplot,… Read More
Many tools are available on the internet for converting a PDF to an image. In this article, we are going to write code for converting… Read More
In Python, its behavior is highly influenced by the setup of the environment variables.  There is a fixed number of environment variables that Python recognizes… Read More
A cryptographic hash function is an exceptional class of hash function that has certain properties that make it appropriate for use in cryptography. It is… Read More
In this article, let us discuss how to generate a 2-D Gaussian array using NumPy. To create a 2 D Gaussian array using the Numpy… Read More
In this article, we are going to have a look at how can we get a list of files (or folders) stored in our Google… Read More
Prerequisites: Face detection using dlib and openCV In this article, we will use image processing to detect and count the number of faces. We are… Read More
Prerequisite: Turtle module, Drawing Shapes There are many modules in python which depicts graphical illustrations, one of them is turtle, it is an in-built module… Read More
Given a character mesh, containing missing characters, match the string which matches the mesh. Example: Input : test_list = [“geeks”, “best”, “peeks”], mesh = “_ee_s” Output… Read More
Given a String, Split into words ignoring space formatting characters like \n, \t, etc. Input : test_str = ‘geeksforgeeks\n\r\\nt\t\n\t\tbest\r\tfor\f\vgeeks’ Output : [‘geeksforgeeks’, ‘best’, ‘for’, ‘geeks’] Explanation :… Read More
A Plotly is a Python library that is used to design graphs, especially interactive graphs. It can plot various graphs and charts like histogram, barplot,… Read More
Prerequisite: Turtle Programming in Python “Turtle” is a Python feature like a drawing board, which lets us command a turtle to draw all over it!… Read More
PyQtGraph is a graphics and user interface library for Python that provides functionality commonly required in designing and science applications. Its primary goals are to… Read More
Gone are the days when we used to have data mostly in row-column format, or we can say Structured data. In present times, the data… Read More
KNN is a machine learning algorithm which is used for both classification (using KNearestClassifier) and Regression (using KNearestRegressor) problems.In KNN algorithm K is the Hyperparameter.… Read More
What is Decision Threshold ? sklearn does not let us set the decision threshold directly, but it gives us the access to decision scores (… Read More
Given an array of strings arr[] where each string is of the form “name:number” and a character T as input, the task is to generate… Read More
For regularization and feature selection, Lasso Regression, also known as the Least Absolute Shrinkage and Selection Operator, is a linear regression technique. The cost function… Read More
Given a list of strings. The task is to find the index of the character position for the word, which lies at the Kth index… Read More
Functions in Python are first-class objects. First-class objects in a language are handled uniformly throughout. They may be stored in data structures, passed as arguments,… Read More