Question: def add _ numbers ( num _ 1 , num _ 2 = 1 0 ) : return num _ 1 + num _ 2

def add_numbers (num_1, num_2=10):
return num_1+ num_2
Choose the correct output of calling the function above using the code:
print (add_numbers (100))
200
100
110
an Error
def add _ numbers ( num _ 1 , num _ 2 = 1 0 ) :

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!