I have created a function as below,
def first():
print('foo')
def second():
print('bar')
i want to access the second() function directly so that i could print bar is there any way to do it?
I have created a function as below,
def first():
print('foo')
def second():
print('bar')
i want to access the second() function directly so that i could print bar is there any way to do it?