Python - Context Managers
What will be the output of this code?
class Manager:
def __enter__(self):
print('Start')
return 'Resource'
def __exit__(self, exc_type, exc_val, exc_tb):
print('End')
with Manager() as m:
print(m)