Quite confusing right? 😃
Author: AnthonyC
Using Python’s tuple packing and unpacking to switch 2 variables
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
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
