Every line of 'int to list 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.
53 def toInts(inList): 54 outList = [] 55 for i in inList: 56 outList.append(int(i)) 57 return outList
Secure your code as it's written. Use Snyk Code to scan source code in minutes – no build needed – and fix issues immediately. Enable Snyk Code
119 def ToIntList(lst): 120 result = [] 121 if lst is None: 122 return result 123 if type(lst) == list: 124 for i in lst: 125 result.append(int(i)) 126 else: 127 split = lst.split( ) 128 for i in split: 129 result.append(int(i)) 130 return result
74 def cast_tuple_int_list(tup): 75 """Set tuple float values to int for more predictable test results""" 76 return [int(a) for a in tup]
11 def _inttuple(obj): 12 if isinstance(obj, tuple) and len(obj)==1: 13 obj = obj[0] 14 if isinstance(obj, (slice,)+integer_types): 15 return (obj,) 16 return tuple(obj)
80 def string_to_int_list(str): 81 if str is None: return [] 82 str = str.strip() 83 if str.find('-') != -1: 84 f = int(str[0:str.find('-')]) 85 t = int(str[str.find('-') + 1:]) 86 87 return range(f, t + 1) 88 elif str.startswith('['): 89 str = str[1:-1] 90 return [int(s) for s in str.split(', ')] 91 else: 92 elt = int(str) 93 return [elt]
27 def parse_int_list(s, symtab=None): 28 result = s.split(',') 29 result = [int(it.strip()) for it in result] 30 return result