RE: Python practice tests
How come this outputs with 0?
def print_nums(x): for i in range(x): print(i) return print_nums(10)
RE: Python practice tests