For questions 2-4, consider the following program:
def tryit(a, b = 7):
return a + b
n =
#main
int(input('enter a number: '))
tryit(n) * 2
print (ans)
ans =
what is output if the user enters 2?
what is the output if the user enters -5?
what is the output if the user enters 7?



Answer :

Other Questions