Hi,
Cant figure out why its returning 4 “True” in this if-logic
dataEnteringNode = IN
CountedPipes=IN[0]
i=0
res=[]
while i<4:
if CountedPipes>i:
res.append(True)
else:
res.append(False)
i=i+1
Hi,
Cant figure out why its returning 4 “True” in this if-logic
dataEnteringNode = IN
CountedPipes=IN[0]
i=0
res=[]
while i<4:
if CountedPipes>i:
res.append(True)
else:
res.append(False)
i=i+1