Computer Science, asked by jiya348, 4 months ago

write the formula of adding numbers in the given cell
B1 , B3 , B4 , B5 , C2 , C4 , G5 , H6 ​

Answers

Answered by pradeepr7654321
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