Pavitra has Published 176 Articles

Is the future with snake(Python) or Coffee(Java)?

Pavitra

Pavitra

Updated on 28-Aug-2019 14:04:53

103 Views

In this article, we will learn about the scope of python and java in implementing the upcoming and trending technologies with ease.JavaFeatures of javaIt is object-orientedIt’s is platform-independentInvolves distributed computing and network capabilitiesMultithreading is supportedSecurity is prioritizedThe stack allocation system is availableSupported/ Available frameworksSpring framework( web applications)Grails ( dynamic environment)Java ... Read More

Introduction to Kivy; A Cross-platform Python Framework

Pavitra

Pavitra

Updated on 28-Aug-2019 13:56:32

688 Views

In this article, we will learn about Kivy framework and its installation. Kivy is a GUI based application interface, open-source that helps in cross-platform applications for Windows, Linux and Mac.Installation GuideFirstly we need to install python on pc.After that we need to install the dependencies −Windows −>>> python -m pip ... Read More

What is the Python Global Interpreter Lock (GIL)

Pavitra

Pavitra

Updated on 28-Aug-2019 13:52:08

227 Views

In this article, we will learn about What is the Python Global Interpreter Lock (GIL).This is a lock or hindrance that resistant the availability of the Python interpreter to multiple threads simultaneously. GIL is identified as a fault/issue in Python 3.x. Or earlier as it doesn’t allow multithreading in a ... Read More

Vectorization in Python

Pavitra

Pavitra

Updated on 28-Aug-2019 13:47:51

855 Views

In this article, we will learn about vectorization and various techniques involved in implementation using Python 3.x. Or earlier.What is Vectorization?Vectorization is a technique to implement arrays without the use of loops. Using a function instead can help in minimizing the running time and execution time of code efficiently. Various ... Read More

isprintable() in Python and its application

Pavitra

Pavitra

Updated on 28-Aug-2019 13:21:48

150 Views

In this article, we will learn about isprintable() in Python and its application.Is printable() is a built-in method used for the purpose of string handling. The isprintable() methods return “True” when all characters present in the string are of type printable or the string is empty, Otherwise, It returns a ... Read More

Introduction To Machine Learning using Python

Pavitra

Pavitra

Updated on 28-Aug-2019 13:14:12

217 Views

In this article, we will learn about the basics of machine learning using Python 3.x. Or earlier.First, we need to use existing libraries to set up a machine learning environment>>> pip install numpy >>> pip install scipy >>> pip install matplotlib >>> pip install scikit-learnMachine learning deals with the study ... Read More

Logic Gates in Python

Pavitra

Pavitra

Updated on 07-Aug-2019 08:26:41

2K+ Views

In this article, we will learn about Logic Gates in Python. Let’s look at each of the logic gates in Python in detail with some easy examples.All of us are quite familiar while implementing logic gates in the processing of electrical signals and are widely used in the electrical and ... Read More

List comprehension and ord() in Python to remove all characters other than alphabets

Pavitra

Pavitra

Updated on 07-Aug-2019 08:19:21

142 Views

In this article, we will learn about a program in which we can remove an all characters other than alphabets using the concept of list comprehension and ord() function in Python 3.x. Or earlier.Algorithm1.We Traverse the given string to check the charater. 2.Selection of characters is done which lie in ... Read More

Lambda and filter in Python Examples

Pavitra

Pavitra

Updated on 07-Aug-2019 08:15:51

2K+ Views

In this article, we will learn about lambda expressions and filter() functions in Python 3.x. Or earlier. These functions are present in the built-in Python standard library.What are lambda expressions?An inline function may be defined by the help of lambda expressions. A lambda expression consists of the lambda keyword followed ... Read More

intersection_update() in Python to find common elements in n arrays

Pavitra

Pavitra

Updated on 07-Aug-2019 07:43:42

117 Views

In this article, we will learn about the iintersection_update() in Python to find out common elements in n arrays.The problem is that we are given an array containing lists, find all common elements in given arrays?Algorithm1.Initializingres with the first list inside the array 2.Iterating through the array containing lists 3.Updating ... Read More

Advertisements