Get rebar cover number

Im trying to get the rebar cover as a single value. But I am getting just the list. How do I get the numerical value of Rebar cover 1?

1 Like

@technitutors ,


elems = IN[0]
nums = []

for i in elems:
    nums.append(float(i))

OUT = nums

Hello,
here is a possibility

cordially
christian.stan