Tuple is somehow similar to a List in Python except that the elements in a tuple is immutable (cannot be change or modified throughout the
Author: AnthonyC
Random Number Generator and Linear Congruential Generator(LCG) using Python
Random number generated by Python are called pseudo random number. The pseudo random number generator (PRNG) algorithm by Python uses a starting point ( aka
Finding the greatest common denominator(GCD) of 2 integers.
Euclidean algorithm is use to find the greatest common denominator(GCD) of 2 integers. The larger integer is divided by the smaller integer and if the
Load, clean and explore data with Python Pandas
In machine learning, we need to be able to manipulate our data. And pandas is a good library for this task. To manipulate is to
