I've a lists containing .las Files of different length. I couldn't figure out how it is possible to create a variable containing all the list entries separated by a ";" ?
Thanks for your help,
Mauro
I've a lists containing .las Files of different length. I couldn't figure out how it is possible to create a variable containing all the list entries separated by a ";" ?
Thanks for your help,
Mauro
Well am not sure if I get you but:
some_list = ['file.las', 'another_file.las', 'something.las']
e = ';'.join(some_list)