mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-21 20:10:17 +00:00
Update 95_pdb.py
This commit is contained in:
parent
49045f2c48
commit
9de8fee0a0
@ -1,19 +1,19 @@
|
||||
a = 1
|
||||
b = 2
|
||||
# a = 1
|
||||
# b = 2
|
||||
|
||||
print(a, b)
|
||||
# print(a, b)
|
||||
|
||||
|
||||
def f(a, b):
|
||||
b = a + b
|
||||
print(a, b)
|
||||
return b
|
||||
# def f(a, b):
|
||||
# b = a + b
|
||||
# print(a, b)
|
||||
# return b
|
||||
|
||||
def g(a, b):
|
||||
breakpoint()
|
||||
c = f(a, b)
|
||||
return c
|
||||
# def g(a, b):
|
||||
# breakpoint()
|
||||
# c = f(a, b)
|
||||
# return c
|
||||
|
||||
g(1, 2)
|
||||
f(3, 4)
|
||||
# g(1, 2)
|
||||
# f(3, 4)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user