Posts by Rudresh

Author Biographical Info: Not available

numpy.ceil | Return the ceiling of the input

By Rudresh

In this tutorial, we will learn how to use the ceiling function of numpy. In Python, to access arrays we have a module i.e numpy. As numpy works on arrays, we will find ceiling val.... Read More

Check if a string contains a specific substring in Python

By Rudresh

In this tutorial, we will learn how to check if a string contains a substring in Python. We can use multiple ways to accomplish the task depending on the use and type of string we .... Read More

Merge two or multiple NumPy arrays using hstack(), vstack, dstack

By Rudresh

In this tutorial, we will learn how to merge two arrays. We can easily do this by various functions provided by numpy. We have concatenate(),  hstack(), vstack() and dstack() to g.... Read More

Check if a number is divisible by a number in Python

By Rudresh

In this tutorial, we will learn how to check if the number is divisible by a number in Python. With the basic knowledge of operators in Python, it is quite easy to check the divisi.... Read More

Control mouse with Python Program

By Rudresh

In this tutorial, we will learn how to automate our mouse movements using Python code. Python provides us with a module pyautogui which has many functions which can help us to auto.... Read More

Python program to find perimeter of circle

By Rudresh

In this tutorial, we will learn how to find the perimeter/circumference of a circle in Python. The logic for this program is quite easy if you know the formula to calculate the per.... Read More

Statistical Functions in NumPy Python

By Rudresh

In this tutorial, we will learn about the statistical functions of numpy in Python. We all know that the numpy module holds the functionalities to process arrays.  Numpy has many .... Read More

Using set on Dictionary keys in Python

By Rudresh

In this tutorial, we will learn how to use a set on the keys of a dictionary with the code snippet. Dictionary is a unique collection in Python. It contains key-value pairs.  Dict.... Read More

Related Posts