I want to call 1 precise function in another function from another function
def exemple():
def dostuff1():
print('Stuff 1')
def dostuff2():
print('Stuff 2')
def dostuff3():
print('Stuff 3')
def training():
#want to call ONLY Dostuff2