[Python] Palindrome Checking Function Posted on A palindrome is a word, number or sentence which reads the same way backward and forward. Let’s write a Python function to check for palindrome entities!
[Python] Prime number generator Posted on A prime number is a number greater than 1, with no positive divisors except 1 and itself. Let’s write a prime number generating function in Python!
[Python] Pi Estimation Using Monte Carlo Method Posted on Pi estimation using Monte Carlo method in Python. The results are accurate to the first 2 digits of Pi.