Write a function that returns the type of its input.
checkType("aaa") = string
def check_type(value): return(type(value))
Last updated 4 years ago