【单选题】Given the function make odd, what are the results of the function invocation(print statements)? def make_odd(n): return 2*n + 1 n = 3 print (make_odd( make_odd(3)))
【单选题】Given the function make odd, what are the results of the function invocation(print statements)? def make_odd(n): return 2*n + 1 n = 3 print (1+make_odd(n))
【单选题】Given the function make odd, what are the results of the function invocation(print statements)? def make_odd(n): return 2*n + 1 n = 3 print (make_odd(n))