Every line of 'python for loop range' 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.
258 def emit_sequential_loop(self, codegen_state, iname, iname_dtype, 259 lbound, ubound, inner): 260 ecm = codegen_state.expression_to_code_mapper 261 262 from pymbolic.mapper.stringifier import PREC_NONE, PREC_SUM 263 from genpy import For 264 265 return For( 266 (iname,), 267 "range(%s, %s + 1)" 268 % ( 269 ecm(lbound, PREC_NONE, "i"), 270 ecm(ubound, PREC_SUM, "i"), 271 ), 272 inner)
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
69 def test_for(): 70 src = dedent("""\ 71 for a in [1,2]: 72 a 73 74 for a1 in 1,"": 75 a1 76 """) 77 check_p(src, 1)
88 def visit_For(self, node): 89 self.make_tab() 90 self.write('for ') 91 self.visit(node.target) 92 self.write(' in ') 93 self._in_args = True 94 self.visit(node.iter) 95 self._in_args = False 96 self.write(':\n') 97 self._indent += 1 98 for n in node.body: 99 self.visit(n) 100 self._indent -= 1
85 def getrange(n): 86 return getattr(getattr(n, 'func', None), 'attr', None)