Every line of 'how to take comma separated input 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.
118 def convert_list_comma(s): 119 """ 120 Return a list object from the <s>. 121 Consider <s> is comma delimited. 122 """ 123 if s is None: 124 return [] 125 if isinstance(s, list): 126 return s 127 return [word for word in re.split(r"\s*,\s*", s.strip()) if word != ""]</s></s>
9 def comma_list(list_str, item_func=None): 10 if not list_str: 11 raise ArgumentTypeError("Invalid comma list") 12 item_func = item_func or (lambda i: i) 13 return [item_func(i.strip()) for i in list_str.split(",") if i.strip()]