Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

62
votes
9answers
17k views

Good Primer for Python Slice Notation

Can anyone recommend a good concise reference for the Python slice notation? I'm a seasoned programmer but new to Python and this notation needs a bit of picking up. It looks extremely powerful, but ...
25
votes
4answers
885 views

What does [:] in Python mean

I'm analyzing some Python code and I don't know what pop = population[:] means. Is it something like array lists in Java or like a bi-dimensional array? Could appreciate some help, thanks.
20
votes
6answers
34k views

Javascript chop/slice/trim off last character in string

I have a string 12345.00 would like it to return 12345.0 I have looked at trim but looks only to trim whitespace and slice which I don't see how this would work. Any suggs?
16
votes
7answers
396 views

Discontinuous slice in python list

I'm looking for an efficient way of achieving this, which I think is a slicing-like operation: >>> mylist = range(100) >>>magicslicer(mylist, 10, 20) ...
13
votes
6answers
2k views

What is :: (double colon) in Python?

I know I can use something like string[3:4] to get a substring in Python, but what is the is something[::3]? Sorry but it's hard to search for this on Google.
13
votes
3answers
2k views

Explanation of [].slice.call in javascript?

I stumbled onto this neat shortcut for converting a DOM NodeList into a regular array, but I must admit, I don't completely understand how it works: [].slice.call(document.querySelectorAll('a'), 0) ...
11
votes
4answers
902 views

Pairs from single list

Often enough, I've found the need to process a list by pairs. I was wondering which would be the pythonic and efficient way to do it, and found this on Google: pairs = zip(t[::2], t[1::2]) I ...
11
votes
5answers
644 views

What is the point of slice type in go (language)

I have read this but still not fully aware of the advantage of slice against array.So I am expecting somebody in SO explain better than it and I am sure you can :)
11
votes
1answer
4k views

How to slice an array in bash

(edited to fit the answer) Looking the "Array" section in the bash(1) man page, I didn't find a way to slice a bash array. So I came up with this overly complicated function: #!/bin/bash # @brief: ...
11
votes
8answers
1k views

How to generate a compiler warning/error when object sliced

I want to know if it is possible to let compiler issue a warning/error for code as following: Note: 1. Yea, it is bad programming style and we should avoid such cases - but we are dealing with ...
10
votes
3answers
726 views

Python: Slicing a list into n nearly-equal-length partitions

I'm looking for a fast, clean, pythonic way to divide a list into exactly n nearly-equal partitions. partition([1,2,3,4,5],5)->[[1],[2],[3],[4],[5]] partition([1,2,3,4,5],2)->[[1,2],[3,4,5]] ...
9
votes
4answers
838 views

Intercept slice operations in Python

I want to imitate a normal python list, except whenever elements are added or removed via slicing, I want to 'save' the list. Is this possible? This was my attempt but it will never print 'saving'. ...
9
votes
9answers
2k views

reverse a string in Python

I was looking for a way to print a string backwards, and after a quick search on google, I found this method: Suppose 'a' is a string variable. This will return the 'a' string backwards: a[::-1] ...
8
votes
2answers
259 views

reversing list using slice notation

in the following example: foo = ['red', 'white', 'blue', 1, 2, 3] where: foo[0:6:1] will print all elements in foo. However, foo[6:0:-1] will omit the 1st or 0th element. >>> foo[6:0:-1] ...
8
votes
3answers
381 views

Any way to improve this string slice method?

I wrote this string extension awhile back, and I'm actually getting quite a bit of use out of it. public static string Slice(this string str, int? start = null, int? end = null, int step = 1) { ...
8
votes
4answers
1k views

Slice notation in scala?

Is there something similar to slice notation in python in scala ? I think this is really a useful operation that should be incorporated in all languages.
7
votes
4answers
276 views

How do I slice a string every 3 indices?

I'm using Python to program for the lab I work at. How can I slice out every 3 characters in a given string and append it to a list? i.e. XXXxxxXXXxxxXXXxxxXXXxxxXXX (where X or x is any given ...
7
votes
4answers
748 views

What's the best way to get the last N elements of a Perl array?

What's the best way to get the last N elements of a Perl array? If the array has less than N, I don't want a bunch of undefs in the return value.
6
votes
3answers
160 views

Python Random Slice Idiom

Is there a pythonic way to slice a sequence type such that the returned slice is of random length and in random order? For example, something like: >>> l=["a","b","c","d","e"] >>> ...
6
votes
1answer
589 views

Slice like functionality from a List in F#

With an array let foo = [|1;2;3;4|] I can use any of the following to return a slice from an array. foo.[..2] foo.[1..2] foo.[2..] How can I do the same thing for List let foo2 = [1;2;3;4]? When ...
6
votes
3answers
3k views

A question about JavaScript's slice and splice methods

I came across the following code: var f = function () { var args = Array.prototype.slice.call(arguments).splice(1); // some more code }; Basically, the result in args is an array that is ...
6
votes
3answers
344 views

Whats the difference between list[-1:][0] and list[len(list)-1]?

Lest say you want the last element of a python list: what is the difference between myList[-1:][0] and myList[len(myList)-1] I thought there was no difference but then I tried this ...
5
votes
5answers
220 views

Why is 'object slice' needed in C++ ? Why it is allowed ? For more bugs?

Why C++ standard allow object slice ? Please don't explain c++ object slice concept to me as I knew that. I am just wondering what's the intention behind this c++ feature(object slice) design ? ...
5
votes
2answers
237 views

How to filter a vector of Strings in R based on string matching

I have the following vector in R: X <- c("mama.log", "papa.log", "mimo.png", "mentor.log") How do I retieve another vector that only contains elements starting with "m" and ending with ".log"?
5
votes
3answers
938 views

Slice a string in groovy

I have a 18 character string I want characters 2-8 from. In python I can do this: sliceMe = "nnYYYYYYnnnnnnnnnn" print sliceMe[2:8] prints YYYYYY I am looking for a way to do this same thing in ...
5
votes
5answers
330 views

Python - slice array until certain condition is met

I need to slice an array from a given index until a certain condition is met. >>> a = numpy.zeros((10), dtype='|S1') >>> a[2] = 'A' >>> a[4] = 'X' >>> a[8] = 'B' ...
5
votes
3answers
164 views

Assigning a value to an element of a slice in Python

This is a simple question about how Python handles data and variables. I've done a lot of experimenting and have Python mostly figured out, except this keeps tripping me up: [edit: I separated and ...
5
votes
1answer
449 views

How To Slice a Simple Polygon with a Line

I have a simple polygon (convex or concave, but no holes) that I need to slice into parts with a line segment. I'm not sure how to actually determine how many polygons result after the slice, or how ...
5
votes
2answers
766 views

Problem with list slice syntax in python

The extended indexing syntax is mentioned in python's doc. slice([start], stop[, step]) Slice objects are also generated when extended indexing syntax is used. For example: a[start:stop:step] or ...
5
votes
9answers
543 views

Extended slice that goes to beginning of sequence with negative stride

Bear with me while I explain my question. Skip down to the bold heading if you already understand extended slice list indexing. In python, you can index lists using slice notation. Here's an ...
4
votes
4answers
145 views

Pythonic way to have a “size safe” slicing

Here is a quote from http://stackoverflow.com/users/893/greg-hewgill answer to Good Primer for Python Slice Notation. Python is kind to the programmer if there are fewer items than you ask for. ...
4
votes
3answers
139 views

Use slice notation with collections.deque

How would you extract items 3..6 efficiently, elegantly and pythonically from the following deque without altering it: from collections import deque q = deque('',maxlen=10) for i in range(10,20): ...
4
votes
4answers
80 views

python string slicing with a list

Here is my list: liPos = [(2,5),(8,9),(18,22)] The first item of each tuple is the starting position and the second is the ending position. Then I have a string like this: s = "I hope that I will ...
4
votes
2answers
292 views

2D slice series of 3D array in numpy

I have a 3D array that represents density values over cartesian space. To get a 2D image I just sum over one of the axes using sum(array,2) and then use the matplotlib function imshow(array2D) to ...
4
votes
1answer
261 views

Python/Numpy - Wrap Slice Around End of Array

I have two 1D arrays, one that has some values of interest (a) and another that provides indices into that array (b). I know that the values in b always increase, except at one point (could be ...
4
votes
7answers
278 views

Go: What is the fastest/cleanest way to remove multiple entries from a slice?

How would you implement the deleteRecords function in the code below: Example: type Record struct { id int name string } type RecordList []*Record func deleteRecords( l *RecordList, ids []int ...
4
votes
2answers
384 views

What the difference between slice() and substr() in javascript

Can i ask what the difference between string object slice() and substr() in javascript?
4
votes
3answers
306 views

Wrapping around a python list as a slice operation

Consider the following simple python code >>> L = range(3) >>> L [0, 1, 2] We can take slices of this array as follows: >>> L[1:3] [1, 2] Is there any way to wrap ...
4
votes
9answers
446 views

Linq to Objects - return pairs of numbers from list of numbers

var nums = new[]{ 1, 2, 3, 4, 5, 6, 7}; var pairs = /* some linq magic here*/ ; => pairs = { {1, 2}, {3, 4}, {5, 6}, {7, 0} } The elements of pairs should be either two-element lists, or ...
4
votes
2answers
133 views

Why can I update a list slice but not a string slice in python?

Just curious more than anything why python will allow me to update a slice of a list but not a string? >>> s = "abc" >>> s[1:2] 'b' >>> s[1:3] 'bc' >>> s[1:3] = ...
4
votes
3answers
332 views

Javascript fastest way to duplicate an Array - slice vs for loop

In order to duplicate an Array in Javascript, does anyone know (and maybe tested) if it's faster to use slice method: var dup_array = original_array.slice(); or doing a for loop: for(var i = 0, l ...
4
votes
5answers
221 views

Fake array slicing operator: Make it shorter

Is there some innovative way to make the "print" shorter without too much confusion? And which of the "print" do you like most? define('_','_'); function _j($a, $b) { return $a._.$b; } // Output ...
4
votes
5answers
2k views

What tools are there to slice a PSD?

I regularly slice web designs provided in PSD format. As a site-builder, I don't need to create graphics—I only rearrange the layers, hide ones and show others, pick colors, widths, heights, and so ...
3
votes
1answer
71 views

How to get a percentage of an array?

I'm wondering how to get a determined percentage of an array. Let's say: $array = array ("I","am","not","a","professional","coder","so","please","help","me"); It's composed of ten values. I'd ...
3
votes
1answer
86 views

resize with averaging or rebin a numpy 2d array

I am trying to reimplement in python an IDL function: http://star.pst.qub.ac.uk/idl/REBIN.html which downsizes by an integer factor a 2d array by averaging. For example: >>> ...
3
votes
5answers
121 views

Efficient multiple, arbitrary index access in Python tuple?

I have a long Python tuple t. I would like to grab the elements at indices i1, i2, ..., iN from t as efficiently as possible. What's the best way? One approach is: (1) result = [t[j] for j in ...
3
votes
3answers
95 views

[python]: how to implement slice in python3?

I read something about slice in python3. Then I wrote a program, tried to implement getitem(self, slice(s)). Code goes below: class NewList: def __init__(self, lst): print('new list') ...
3
votes
1answer
163 views

Has anyone built a program slicer in Java?

I have to build a program slicer in java to slice source code based on a slicing criterion. I see there are a very few libraries out there for this purpose. Notwithstanding, I would like to try this ...
3
votes
1answer
109 views

Slicing Tools for Eclipse

Does anyone know if there are any open source tools for eclipse that can generate static program slices according to the slicing technique outlined by Mark Weiser ...
3
votes
3answers
275 views

removing data from a numpy.array

I have a rank-1 numpy.array of which I want to make a boxplot. However, I want to exclude all values equal to zero in the array ... Currently, I solved this by looping the array and copy the value to ...

1 2 3 4