面试题答案
一键面试class ContextManagerExample:
def __enter__(self):
print('Entering context')
return self
def __exit__(self, exc_type, exc_value, traceback):
print('Leaving context')
class ContextManagerExample:
def __enter__(self):
print('Entering context')
return self
def __exit__(self, exc_type, exc_value, traceback):
print('Leaving context')