step into and step over and step out

邹开畅
2023-12-01

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()

 类似资料:

相关阅读

相关文章

相关问答