Source code for example.sample

''' Functions. Mind ya business '''


[docs]def funk(arg1, arg2, arg3="no"): """[summary] :param arg1: [description] :type arg1: [type] :param arg2: [description] :type arg2: [type] :param arg3: [description], defaults to "no" :type arg3: str, optional """ try: ret = arg1 * arg2 except: ret = 0 finally: print(arg3) return ret