假设我有一个函数定义:
def test(): print 'hi'
每当我给出一个参数时,我得到一个TypeError.
现在,我想把def语句放在try中.我该怎么做呢?
try: test() except TypeError: print "error"