Posts

Showing posts from January, 2023

Some interesting libraries or modules…

  Python:  Python is a popular programming language. Python is dynamically-typed and garbage-collected programming language. It was created by Guido van Rossum during 1985- 1990. It is one of the world’s most popular, in-demand programming languages. Reasons: It’s easy to learn. It’s super versatile. It has a huge range of modules and libraries. Modules:  A module is a collection of code or functions that uses the .py extension. Libraries:  A Python library is a set of related modules or packages bundled together. Python provides some interesting modules and libraries. Pillow:  It is a lightweight image processing tool that aid in editing, creating, and saving images. Pillow supports many image file formats including BMP, PNG, JPEG, and TIFF. Python Imaging Library is a free and open-source additional library for the Python programming language that adds support for opening, manipulating, and saving many different images file formats. To install pillow: pip install Pillow from PIL imp