mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 03:20:18 +00:00
Update 95_pdb.py
This commit is contained in:
parent
d87c9ff850
commit
d38fd25459
@ -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