Pavitra has Published 177 Articles

Keyboard module in Python

Pavitra

Pavitra

Updated on 28-Aug-2019 14:06:59

1K+ Views

In this article, we will learn about the use of the Keyboard module in Python 3.x. Or earlier.Ide preferred − Jupyter notebookInstallation −>>> pip install keyboardFunctionalities of the module −Allows us to block the action of specific keysWe can manage intents from the keyboard using on click listeners.Cross-platform compatibility.Supports special ... Read More

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

Pavitra

Pavitra

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

89 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

654 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

200 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

827 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

132 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

191 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

125 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

Advertisements