+ 2
Please explain the working of the below python code
fib = {1:1,2:1,3:2,4:3} print(fib.get(4, 0)+fib.get(7, 5)) where did we get the value of fib.get(7,5) as 5
1 Answer
+ 3
thanks
fib = {1:1,2:1,3:2,4:3} print(fib.get(4, 0)+fib.get(7, 5)) where did we get the value of fib.get(7,5) as 5