The xl()-function returns a Pandas dataframe.
Hence, it can be iterated over by the following (adapted from this post):
arr=xl("B2:B3")
tot=1
for index, row in arr.iterrows():
tot*=(1+row[0])
tot-1
or, as looping each row isn't really necessary when it is a df, the same can be done by
arr=xl("B2:B3")
tot=(arr[0]+1).product()
tot-1