Create a function that accepts two arguments, input and Object's type. The function will return True if the input's type matches the second argument. Otherwise False.
Sample Code:
def naniTheWhat(inp,t):
# Enter your logic here...
Examples:
Input: True,bool
Output: True
Explanation: The type of the input is boolean.
Input: ' ',bool
Output: False
Explanation: The type of the input is not boolean.