How to use 'python substring left' in Python

Every line of 'python substring left' 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
306def substring(self, start_idx=None, end_idx=None):
307 """ substring of the original string, [start_idx: end_idx]"""
308 if start_idx is None:
309 start_idx = 0
310 if end_idx is None:
311 end_idx = self.root.length_sum
312 elif start_idx < 0:
313 raise IndexError(start_idx)
314 elif end_idx > self.root.length_sum:
315 raise IndexError(end_idx)
316 leaves = self._sub_leaves(self.root, start_idx, end_idx)
317 return ''.join([node.value for node in leaves])

Related snippets