|
O2-DQ User Interface 1.0.0
|
Functions | |
| def | listToString (list s) |
| def | stringToList (str string) |
| def listToString | ( | list | s | ) |
ListToString provides converts lists to strings with commas.
This function is written to save as string type instead of list
Args:
s (list): Input as List
Returns:
string: Comma seperated string
Definition at line 19 of file stringOperations.py.
| def stringToList | ( | str | string | ) |
stringToList provides converts strings to list with commas.
This function is written to save as list type instead of string
Args:
string (string): Input as String
Returns:
list: merge string elements with comma
Definition at line 43 of file stringOperations.py.