Here we’ll see how to find common factors of two numbers in python. e.g., We can find common factors of two numbers in this way.
We have many libraries in python by which we can extract text from images. Opencv, tkinter, pytesseract, etc We can easily install it. Now import the required library and extract text from image. These libraries have function which helps in …
In python, we have data of many columns and rows. And we want to show only some columns off that data. Then what will we do. We have a drop() function which help in dropping columns in the data. e.g., …
Variable is nothing but a container to store data. It can be short name like x & y or it can be more descriptive name as name, age, roll_no, etc. Variable name should be an alphabet or underscore(_). No special …
Python is easy-to-learn yet powerful object oriented programming language. It is a very high level programming language yet as powerful as many other middle-level not so high level languages like C, C++, Java, etc. Python offers many choices for Web …
Python is a general purpose, high level, interpreted language with easy syntax and dynamic semantics. It was created by Van Rossum in 1989. It has an amazing computing power. It is preferred by both beginners and prose alike. It is …
We have many libraries which can help in creating registration form in python. e.g., Tkinter e.g., You can enter the information and make the registration form as you want. Below is the sample registration form. This is all about creating …
A set is an unordered collection data type with no duplicate elements. Sets are iterable and mutable. The elements appear in arbitrary order when sets are iterated. Here we’ll see how to convert set into lists in python. e.g., e.g., …
An array is basically a data structure which can hold more than one value at a time. It is a collection or ordered series of elements of the same type. Arrays can only take a single datatype element. A list …
Converting list into data frame means printing it in a form of data in python. Here we’ll see how we can convert the list into data frame in python. e.g., This is how we can convert list into DataFrame in …