Python is the high level, general purpose programming language developed by Guido Van Rossum in 1991. It is one of the most popular programming language from last three years...
Decorator takes a function as an argument, adds some functionality and returns it. Generally, decorators are used when we need to add some functionality to the existing code.
Numpy is python library that provides computation on large array elements and matrices. Numpy provides fast and efficient processing on n-dimensional arrays. Array elements in numpy are stored in...
PDF(Portable Document Format) is the file format developed by Adobe in the 1990s. At the present time, we all are familiared with its huge popularity in read-only documents. In...
As the name implies data structure are structures that holds some related data. Python has built-in data structure such as list, tuple, dictionary and set. These all data structures...
Turtle module is a part of the standard python installation which provides a drawing board so that we can draw all over it using turtle methods. It is a...