Who am I?
What type of arguments?
Write a function that returns the type of its input.
Example
checkType("aaa") = string
Solutions
🐍 Python
def check_type(value):
return(type(value))
Last updated
Was this helpful?