About 50 results
Open links in new tab
  1. slice - How slicing in Python works - Stack Overflow

    Understanding the difference between indexing and slicing: Wiki Python has this amazing picture which clearly distinguishes indexing and slicing. It is a list with six elements in it. To understand slicing …

  2. what does [::-1] mean in python - slicing? - Stack Overflow

    The method you used is called Slicing in Python. Slicing syntax in python is as follows, [ <first element to include> : <first element to exclude> : <step> ] where adding the step part is optional. Here is a …

  3. How to slice a list in Python - Stack Overflow

    This creates a new list, it doesn't trim the existing one. To trim in-place, use del on a slice; e.g. del listobj[-x:] will remove the last x elements from the list object.

  4. Python: slicing a multi-dimensional array - Stack Overflow

    Feb 27, 2023 · Python's slicing also doesn't support 2D/multi-dimensional slicing for lists. The expected output for slicing a multi-dimensional list can be tricky. For example, If you want the third column …

  5. Understanding string reversal via slicing - Stack Overflow

    It's using extended slicing - a string is a sequence in Python, and shares some methods with other sequences (namely lists and tuples). There are three parts to slicing - start, stop and step.

  6. c++ - What is object slicing? - Stack Overflow

    Nov 8, 2008 · The slicing problem in C++ arises from the value semantics of its objects, which remained mostly due to compatibility with C structs. You need to use explicit reference or pointer syntax to …

  7. How to slice a list from an element n to the end in Python?

    3 You can also use the None keyword for the end parameter when slicing. This would also return the elements till the end of the list (or any sequence such as tuple, string, etc.)

  8. How do I get a substring of a string in Python? - Stack Overflow

    Aug 31, 2016 · Sure, the specific example of selecting alternate characters may not be relevant to the question, but understanding there is a 3rd parameter to slicing very much is relevant and the simple …

  9. python - Slicing a dictionary - Stack Overflow

    I have a dictionary, and would like to pass a part of it to a function, that part being given by a list (or tuple) of keys. Like so: # the dictionary d = {1:2, 3:4, 5:6, 7:8} # the subset of keys ...

  10. python - Slicing of a NumPy 2d array, or how do I extract an mxm ...

    Nov 23, 2010 · Slicing of a NumPy 2d array, or how do I extract an mxm submatrix from an nxn array (n>m)? Asked 15 years, 2 months ago Modified 7 years, 5 months ago Viewed 270k times