JavaScript Modules are basically libraries which are included in the given program. They are used for connecting two JavaScript programs together to call the function...
Share
In the previous article on closures in javascript, we learned that Closure is one of the most important yet most misunderstood concepts in Javascript. The closure is ...
Share
A module is a file containing Python definitions and statements. A module can define functions, classes and variables. A module can also include runnable code. Groupi...
Share
.calendar-table {
font-family: arial, sans-serif;
border-collapse: collapse;
border: 1px solid #5fb962;
width: 100%;
}
.calendar-table td, th {
backgroun...
Share
This module performs conversions between Python values and C structs represented as Python bytes objects. Format strings are the mechanism used to specify the expecte...
Share
Urllib module is the URL handling module for python. It is used to fetch URLs (Uniform Resource Locators). It uses the urlopen function and is able to fetch URLs usin...
Share
Let’s see how to generate QR code in Python using pyqrcode module.
pyqrcode module is a QR code generator. The module automates most of the building process fo...
Share
This module provides support for rational number arithmetic. It allows to create a Fraction instance from integers, floats, numbers, decimals and strings.
Fraction ...
Share
Openpyxl is a Python library for reading and writing Excel (with extension xlsx/xlsm/xltx/xltm) files. The openpyxl module allows Python program to read and modify Ex...
Share
Prerequisite : Reading an excel file using openpyxl
Openpyxl is a Python library for reading and writing Excel (with extension xlsx/xlsm/xltx/xltm) files. The openpy...
Share