Question #236675

Call your function from Example 1 three times with different kinds of arguments: a value, a variable, and an expression. Identify which kind of argument is which.

Expert's answer

#function
def func(n):
    print(n *10)


# a value argument
func(5)




x = 10
func(x) # a variable argument


a=234
b=45
func(a + b) #an expression argument

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

LATEST TUTORIALS
APPROVED BY CLIENTS