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
Comments
Leave a comment