write the formula of adding numbers in the given cell
B1 , B3 , B4 , B5 , C2 , C4 , G5 , H6
Answers
Answered by
0
Answer:
from functools import reduce
a = "B1","B2","B4","B5","C2","C4","G5","H6"
print(reduce(lambda x,y : x+y,a))
Similar questions