I have a list like below (similar to below but much longer)
[123.45, 32.89, 234.90, 234.96, 56.94, 71.21]
I wish to chop it up to look like this (I need the [ and ( brackets as per this below)
[(123.45, 32.89), (234.90, 234.96), (56.94, 71.21)]
I am not professional python programmer. I use a Visual Programming Language called DynamoBIM. I occasionally have to write a little bit of Python to do stuff with DynamoBIM.