Answer to Question #236675 in Python for abdul

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.
1
Expert's answer
2021-09-13T18:30:06-0400
#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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS