Author: AnthonyC
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
Guess the number(integer) game
import random gameOver = Falsenum = random.randint(1,101) while gameOver== False: inputNum = input(‘Guess and enter the integer from 1 to 100…’) yourGuess= int(inputNum) if yourGuess
