Every line of 'how to convert string into list in python' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
9 def to_python(self, value): 10 return value.split(",")
84 def to_list(value): 85 if value is None: 86 return None 87 88 return list(value)
1337 def ConvertToPythonStringList(to_convert): 1338 ''' 1339 Converts a python string list to a format more suitable for GUI representation 1340 @param to_convert:: The string list 1341 ''' 1342 return su.convert_to_string_list(to_convert)
13 def to_list(l): 14 return isinstance(l, list) and l or [l]
805 def convert(a): 806 return str(a)
6 def to_list(obj): 7 if isinstance(obj, list): 8 return obj 9 else: 10 return [obj]
100 def strListToList(strlist): 101 """ 102 Convert string in form of '"[33, 42, 43]", "[24, 43, 4]"' 103 into a normal list. 104 """ 105 106 strlist = strlist.replace('"', '') 107 strlist = strlist.replace("'", "") 108 try: 109 listeval = ast.literal_eval(strlist) 110 return listeval 111 except ValueError: 112 raise ValueError("Failed to convert %s to list" % (strlist))
420 def convert_list_str(string_list, type): 421 """ 422 Receive a string and then converts it into a list of selected type 423 """ 424 new_type_list = (string_list).split(",") 425 for inew_type_list, ele in enumerate(new_type_list): 426 if type is "int": 427 new_type_list[inew_type_list] = int(ele) 428 elif type is "float": 429 new_type_list[inew_type_list] = float(ele) 430 431 return new_type_list
170 def makeList(input): 171 if isinstance(input, basestring): 172 return [ input ] 173 elif input is None: 174 return [ ] 175 else: 176 return list(input)
66 def to_list(x, default=None): 67 if x is None: 68 return default 69 if not isinstance(x, (list, tuple)): 70 return [x] 71 else: 72 return x