Pavitra has Published 177 Articles

Python Program for GCD of more than two (or array) numbers

Pavitra

Pavitra

Updated on 11-Sep-2019 11:53:55

1K+ Views

In this article, we will learn about the solution to the problem statement given below −Problem statement − We will be given an array of number and we need to find the greatest common divisor.If we need to find gcd of more than two numbers, gcd is equal to the ... Read More

Python Program for the focal length of a spherical mirror

Pavitra

Pavitra

Updated on 11-Sep-2019 11:51:14

221 Views

In this article, we will learn about the solution to the problem statement given below −Problem statementWe will be given the radius of curvature of the spherical mirror and we have to find the focal length of the same.The focal length is the distance between the centre of curvature of ... Read More

Python Program for Finding the vertex, focus and directrix of a parabola

Pavitra

Pavitra

Updated on 11-Sep-2019 11:48:11

776 Views

In this article, we will learn about the solution to the problem statement given below −Problem statementThe standard form of a parabola equation is y=ax^2+bx+c. Input the values of a, b and c, our task is to find the coordinates of the vertex, focus and the equation of the directrix.The ... Read More

Python Program for Find the perimeter of a cylinder

Pavitra

Pavitra

Updated on 11-Sep-2019 11:45:20

72 Views

In this article, we will learn about the solution to the problem statement given below −Problem statement − Input diameter and height, find the perimeter of a cylinderPerimeter is nothing but the side view of a cylinder i.e. a rectangleTherefore Perimeter= 2 * ( h + d )here d is ... Read More

Windows 10 Toast Notifications with Python

Pavitra

Pavitra

Updated on 30-Aug-2019 12:55:21

719 Views

We can create a notifier for the events that occurred in Windows using Python. This is very simple with the win10toast module. If you are familiar with the Toast in Android then understanding the Toast notifications with Python is a piece of cake. We can generate notifications whenever an event ... Read More

What are the tools to support Data Science other than Python and R?

Pavitra

Pavitra

Updated on 29-Aug-2019 12:21:47

71 Views

In this article, we will learn about the tools to support Data Science other than Python and R?Here we will look at five tools that help in implementing the concept of data science.Apache HadoopJava-based free softwareLarge storage capabilityThe splitting capacity of dataNosqlMore structured orientationBetter performance efficiencyOpen-source software efficiencyHiveDistributed data management ... Read More

Looping Techniques in Python

Pavitra

Pavitra

Updated on 29-Aug-2019 12:09:14

165 Views

In this tutorial, we will learn about looping techniques in python 3.x. Or earlier. There are many ways in which we can implement loops. Here we will be discussing four techniques in looping.Enumeration constructExample Live Demo# enumerate() type for index, value in enumerate(['Tutorial', 'point']):    print(index, value)Output0 Tutorial 1 pointZip constructExample Live ... Read More

K’th Non-repeating Character in Python using List Comprehension and OrderedDict

Pavitra

Pavitra

Updated on 29-Aug-2019 12:01:21

220 Views

In this article, we will learn about K’th Non-repeating Character in Python using List Comprehension and OrderedDict. To do so we take the help of inbuilt constructs available in Python.Algorithm1. First, we form a dictionary data from the input. 2. Now we count the frequency of each character. 3. Now ... Read More

Iterator Functions in Python

Pavitra

Pavitra

Updated on 29-Aug-2019 11:56:38

258 Views

In this article, we will learn about the four iterator functions available in Python 3.x. Or earlier namely accumulate() , chain(), filter false() , dropwhile() methods.Now let’s look on each of them in detail −Accumulate () & chain() methodAccumulate() method takes two arguments, one being iterable to operate on and ... Read More

Introduction-to-convolutions-using-python

Pavitra

Pavitra

Updated on 29-Aug-2019 11:47:42

144 Views

In this article, we will learn about convolutions in Python 3.x. Or earlier. This articles come under neural networks and feature extraction.Ide preferred − Jupyter notebookPrerequisites − Numpy installed, Matplotlib installedInstallation>>> pip install numpy >>>pip install matplotlibConvolutionConvolution is a type of operation that can be performed on an image to extract ... Read More

Advertisements