Month: August 2022
Finding an Item in Python List
- Posted by Admin
- on August 23, 2022
- in Python
- No Comments.
Solution: Method 1 Solution: Method 2
Post Tagged with : filter largest word in string, finding longest keyword, finding longest word in paragraph using python, key, python
Plotting AI/ML Activation Functions using Python
- Posted by Admin
- on August 23, 2022
- in Python
- No Comments.
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 …
Post Tagged with : Activation Functions, AI/ML, Artificial Intelligence, Cosh, Deep Learning, Machine Learning, Neural Network, Prediction, Relu, Sigmoid, Softmax, Tanh, Training
Python Program to Solve a Classic Ancient Chinese Puzzle
- Posted by Admin
- on August 23, 2022
- in Python
- No Comments.
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
- Posted by Admin
- on August 23, 2022
- in Python
- No Comments.
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 …
Post Tagged with : filter largest word in string, finding longest keyword, finding longest word in paragraph using python, key, python
Sorting List of Tuples using Key and Lambda Function in Python
- Posted by Admin
- on August 23, 2022
- in Python
- No Comments.
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 …