corrlib/corrlib/tools.py
2025-05-12 20:30:18 +00:00

11 lines
130 B
Python

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