How to use 'inclusive range python' in Python

Every line of 'inclusive range 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.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
10def range_compat(number_value):
11 if pythonver >= 3:
12 return range(number_value)
13 else:
14 return xrange(number_value)

Related snippets