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