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.
10 def range_compat(number_value): 11 if pythonver >= 3: 12 return range(number_value) 13 else: 14 return xrange(number_value)