Create a function that takes a value as an argument and returns the type of this value.
get_type(1) ➞ "int" get_type("a") ➞ "str" get_type(True) ➞ "bool" get_type([]) ➞ "list" get_type(None) ➞ "NoneType"
N/A