Answers for "check when a function is called python"

1

python how to check if a functions been called

def example():
    example.has_been_called = True
    pass

example.has_been_called = False

example()

#Actual Code:
if example.has_been_called:
   print("foo bar")
Posted by: Guest on March-27-2020

Code answers related to "check when a function is called python"

Python Answers by Framework

Browse Popular Code Answers by Language