I couldn't find any question related to this subject. But does python execute a function after the previous called function is finished or is there in any way parallel execution?
For example:
def a():
print('a')
def b():
print('b')
a()
b()
So in this example I would like to know if I can always be sure that function b is called after function a is finished, even if function a is a very long script? And what is the defenition of this, so I can look up documentation regarding this matter.
Thanks!!