Month: August 2022

Finding an Item in Python List

Solution: Method 1 Solution: Method 2

Plotting AI/ML Activation Functions using Python

In AI/ML activation functions play very important role to training the neural network to classify data or predict the future information. There are different activationRead More …

Python Program to Solve a Classic Ancient Chinese Puzzle

Puzzle We count 31 heads and 96 legs among the chickens and rabbits in a farm. How many rabbits and how many chickens do weRead More …

Finding Longest Word in Paragraph using Python

Here is the input paragraph we have. We need to find the longest word out of above paragraph. The output should be: recommendations Solution: MethodRead More …

Sorting List of Tuples using Key and Lambda Function in Python

Here we will be sorting a list of tuples having first names and last names of cricket players by their last names. This is theRead More …