hi there
i did a simple list.append in python and it works for a define liste inside python. But when im trying to add a input for Dynamo use, it seems i had an issue.
here the code :
layer = IN[0]
styles=[]
for i in layer[]:
if i == red :
styles.append("0.13mm")
elif i == yellow:
styles.append ("0.18mm")
else :
styles.append ("0.13mm")
OUT = styles
im sure it an noob question, but help will be appreciate.
thank you