Pretty simple question - I have searched but not found an answer to this question.
It might be a bit silly to do this but I was curious if it is possible to hook into the print(*arg, **kwarg)
function of python 3.X and override it / add time.sleep(var)
at the end of the invoke.
Of course I could just def another method and wrap it with a time.sleep(var)
but I was just curious how one would go about overriding the pre-built functions.