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!
Read moreCategory: Python Programming
[Python] Prime number generator
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!
Read more[Python] Pi Estimation Using Monte Carlo Method
Pi estimation using Monte Carlo method in Python. The results are accurate to the first 2 digits of Pi.
Read more