Hi Guys! Sorry for dump question but I’ve been trying to remove these “names” for a couple days already. Please help me!
Dynamo|529x500
I don’t see any Link / image
Use this to check if list items are integers (whole numbers)
values = IN[0]
OUT = list(isinstance(value, int) for value in values)
Or something like to get float and integers (whole numbers and decimal numbers).
values = IN[0]
a=[]
for value in values:
if isinstance(value, int) or isinstance(value, float):
a.append(value)
OUT = a
3 Likes
Are you removing text or just a sublist that only contains text?
You could try something like this to remove sublists that don’t contain additional values.
1 Like