In this article we use Pyscreenshot to take a screenshot using python Pyscreenshot tries to allow to take screenshots without installing 3rd party libraries. It is cross-platform. It is only …
maxguy71
-
The statistics module provides functions to mathematical statistics of numeric data. there are a variety of useful functions are available The statistics module was introduced in Python 3.4, so if …
-
In this code example we create a morse code converter in python What is Morse Code Morse code is a method used in telecommunication to encode text characters as standardized sequences of two different signal durations, …
-
Quicksort is an in-place sorting algorithm it is still a commonly used algorithm for sorting. When implemented well, it can be somewhat faster than merge sort and about two or three times faster than heapsort. Quicksort …
-
A selection sort is an in-place comparison sorting algorithm. It has an O(n2) time complexity, which makes it inefficient on large lists, and generally performs worse than the similar insertion sort. Selection sort is noted for its …
-
A heterogram is a word, phrase, or sentence in which no letter of the alphabet occurs more than once. The terms isogram and nonpattern word have also been used to …
-
There are two types of loops available in python while loop Using the while loop we can execute a set of statements as long as a condition is true. It …
In this article we look at python and wmi, first what exactly is wmi. Windows Management Instrumentation (WMI) consists of a set of extensions to the Windows Driver Model that provides an operating system interface …
A bubble sort, sometimes referred to as sinking sort, is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in …