def f(num):
print(f"num is: {num}") # step into F11
def g(num):
f(num) # <–current breakpoint
f(1) # step over F10
def main():
g(2)
g(3) # step out of current function scope F12
main()
def f(num):
print(f"num is: {num}") # step into F11
def g(num):
f(num) # <–current breakpoint
f(1) # step over F10
def main():
g(2)
g(3) # step out of current function scope F12
main()