# test calling builtin import function# basic test__import__("builtins")# first arg should be a stringtry:__import__(1)exceptTypeError:print("TypeError")# module name should not be emptytry:__import__("")exceptValueError:print("ValueError")# level argument should be non-negativetry:__import__("xyz",None,None,None,-1)exceptValueError:print("ValueError")