In this challenge, you will find a function called solution
that takes a parameter named value
. You need to determine the data type of the value
parameter and return it from the solution
function.
Remember that the value
parameter will be different each time we run the solution
function.
Example 1:
Input:
solution(1)
solution("Dieguillo")
solution(True)
Output:
"number"
"string"
"boolean"