corrlib/corrlib/tools.py
Justus Kuhlmann e4495ccb9f use join
2025-03-31 14:00:24 +00:00

9 lines
No EOL
114 B
Python

def str2list(string):
return string.split(",")
def list2str(mylist):
s = ",".join(mylist)
return s