

What does this program print?
Trace the program the way the computer would, then make your call before running anything.
def half(n):
return n // 2
assert half(10) == 5
assert half(7) == 3
print("ok")

Trace the program the way the computer would, then make your call before running anything.
def half(n):
return n // 2
assert half(10) == 5
assert half(7) == 3
print("ok")