Every line of 'prime number program in python using while loop' 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.
30 def python_loop(n): 31 s = 0 32 for i in range(n): 33 s += i + 1 34 return s