I need to pass a list of numbers in a 3D program I'm using but it can only pass a single value. I want to pass the list as a single string separated by decimal points and then later convert that string back to a list. Here's the outcome I'm looking for:
a=[8,9,10,11] # will always contain integers
list elements converted to decimal then join as a string
a=".8.9.10.11"
then later on convert that string back to a list
a=[8,9,10,11]
I'm thinking it's a combo of the map() and join() function but I'm not exactly sure. Thanks for any help!