+ 1
what is the output of the program mentioned in the question.
fib = {1: 1, 2: 1, 3: 2, 4: 3} print(fib.get(4, 0) + fib.get(7, 5)) # The answer is 8. How will we get the value someone explain it
0 Answers
fib = {1: 1, 2: 1, 3: 2, 4: 3} print(fib.get(4, 0) + fib.get(7, 5)) # The answer is 8. How will we get the value someone explain it