CPSC 203: Introduction to computers  

James Tam

Programming Practice: Parameter passing when defining and calling functions

Explain why the following program below can't translate to binary.

def fun (num1, num2):

     print num1, num2

 

def start ():

    num1 = 123

     fun (num1)

 

[Solution]