In this example, you are expected to find the coefficients of the quadratic equation of the given two roots (x1 and x2) with a python […]
Create various graph and chart for Earning Software with Python
Hello and welcome back, in this chapter we will continue to develop the previous earning application which shows the shoe and shirt sales figure from […]
Return people from a list and dictionary with Python
In this article, we are going to return a list of names that show whether that person is nice or naughty based on True (Nice) […]
Return the word with the longest length within a string using Python
Simple challenge – eliminate all bugs from the supplied code so that the code runs and outputs the expected value. The output should be the […]
Return an even number based on the Nth even number with python
In this example, we will create a python function that will return an even number based on the Nth even number given. Let say when […]
Create a python function which will merge, sort and remove duplicate values from lists
In this example, we will create a single python function that will accept unlimited lists of numbers and merges them into a single list that […]
Python Positional-only parameters
I have downloaded Python 3.8 and start to play around with those latest python functions. In this article, we will look at the Positional-only parameter […]
Python if else demo
A simple kata from codewars will show us how to use the if-else statement in python. The wide mouth frog is particularly interested in the […]
Sort list alphabetically with python
You will be given a vector of string(s). You must sort it alphabetically (case-sensitive!!) and then return the first value. The returned value must be […]
Summation of alphabet position with python
In this article, we will create a python function that will turn a string into a list, then return the sum of all the positions […]