Tagged Questions
2
votes
2answers
44 views
Why am I receiving “list index out of range” in my code? [closed]
I am receiving "list index out of range". I think I'm naming one of the variables incorrectly. It might make more sense if i add the rest in then.
I am trying to print out the differences in ...
0
votes
2answers
49 views
Finding the indices of matching elements in list in Python
I have a long list of float numbers ranging from 1 to 5, called "average", and I want to return the list of indices for elements that are smaller than a or larger than b
def find(lst,a,b):
result ...
0
votes
2answers
50 views
Select from list by index, but keep other associated items in list
If I have a 2dlist of points like this...
myList=[['ab','0_3','-1','1'],['bm','2_1','-3','2'],['am','4_1','-1','3'],...]]
where '-1','1' for example are x, y coordinates (the last 2 columns) and I ...
2
votes
3answers
165 views
Haskell <<loop>>
With getIndex xs y I want the index of the first sublist in xs whose length is greater than y.
The output is:
[[],[4],[4,3],[3,5,3],[3,5,5,6,1]]
aufgabe6: <<loop>>
why getIndex does ...
0
votes
3answers
79 views
How to find an Index of a string in a list
So what I am trying do is retrieve the index of the first item, in the list, that begins with "whatever", I am not sure how to do this.
My attempt (lol):
List<string> txtLines = new ...
-1
votes
1answer
40 views
python list.index('') fails to find string in list if string is in list[0] - why? how do i find it?
Am I going mad?
In my tests python list.index('') fails to find string in list if string is in list[0]!!!
why? how do i find it?
Here is my example code:
list1 = ['WTF', '2.09', ...
1
vote
1answer
63 views
Python Index Error List of index out of range
I have a python code which send serial command to a device and get reply from it.
def control(command):
serialport= serial.Serial ("/dev/ttyAMA0", 9600, timeout=0.5)
...
0
votes
1answer
37 views
find index of row matching a given criteria
I have the following list (nodes):
nodeID, x, y, z=row
I want to find the index of the row which row[0]==nodeAID.
My code is:
nindF=[line[0].index(nodeAID) for line in nodes]
but it gives me ...
0
votes
1answer
80 views
Prolog, delete an element in a list at a specified index
I need your help! Can you help me with this: delete an element in a list at a specified index in Prolog.
For example:
delete(List,Index,NewList).
?-L=[1,5,7,4],delete(L,2,L2),write(L2).
...
3
votes
2answers
94 views
Index of element in list in Haskell
How can I get the index of the element I am at in haskell when I am using map ?
For example I have this list l = "a+bc?|(de)*fg|h" and I want to know the exact index of the element I am at when I ...
0
votes
2answers
36 views
How do I index a dictionary of multiple lists using a list of indexes?
I'm on Python 2.7.3.
If I have a dictionary of lists, like this:
>>> x1 = [1,2,3,4,5,6,7,8,5]
>>> x2 = range(11,20)
>>> mydict = {'first':x1,'second':x2}
... and the ...
0
votes
2answers
58 views
Sorting a list of lists by the index of a sublist in python
I'm in the middle of a larger script and need to order a list by the index of the sub lists. My root list contains sub-lists of numbers corresponding to [Latitude, Longitude, Elevation, Distance]. I ...
0
votes
2answers
54 views
Python: identical items in list are treated as the same
I have a nested list in python. Each item the second list is also a nested list. My goal is to duplicate one list, insert it right at the same index, and then modify each one. So, example of start ...
-3
votes
5answers
69 views
How do you make a for loop to always print zero in the beginning, without having a zero element as a first element?
I tried:
mylist=[1,2,3]
for i in mylist:
time=0 ...
0
votes
3answers
57 views
How can you split a list every x elements and add those x amount of elements to an new list?
I have a list of multiple integers and strings ['-200', ' 0', ' 200', ' 400', ' green', '0', '0', '200', '400', ' yellow', '200', '0', '200', '400', ' red'] I'm having difficulty separating the list ...
1
vote
8answers
114 views
How to find the cumulative sum of numbers in a list?
list=[4,6,12]
I want to sum up the numbers like [4+0, 4+6, 4+6+12] in order to get the list t=[4,10,22]. I tried:
x=0
for i in (time_interval):
t1=time_interval[0]
t2=time_interval[1]+t1
...
0
votes
6answers
57 views
Python, get index from list of lists
I have a list of lists of strings, like this:
l = [['apple','banana','kiwi'],['chair','table','spoon']]
Given a string, I want its index in l. Experimenting with numpy, this is what I ended up ...
0
votes
3answers
70 views
Reverse text in python function
I am trying to manually (without the built in function) reverse a string of text, however the code gives me a "list assignment index out of range" for list_rev[u] = list_[i]. I don't understand why ...
2
votes
5answers
96 views
Python: finding the indices of a list that match the given sublist
Suppose there are two Python Lists:
my_list = ['a', 'bb', 'c', 'bb', 'cc', 'bbc']
sublist = ['bb', 'bb', 'bbc']
Apparently, sublist consists of the 1st, 3rd, and 5th elements of *my_list*. Now I ...
0
votes
2answers
64 views
list Index error
UPDATED -
Hi i have "half" a problem with my web development:
I have this method in a class which takes a value from a database call, (the table in the database has a key: catId and another field)
...
7
votes
3answers
198 views
Haskell- Find element in a list and return its position
So i need to make a function described as
invFib :: Integer -> Maybe Integer
which takes an Integer and looks for it in the fibonacci sequence (as described by the function below)
fibs :: ...
-2
votes
1answer
36 views
New to OCaml finding index of element in a list
Problem solved. Issue was I forgot to use let statements when "changing" the immutable variables.
1
vote
2answers
98 views
Python, list index out of range error
I'm trying to test a simple 2d map coordinate generator in python. It creates a Tile objects with x and y array so that I can access the coordinates and modify their properties.
This creates the map ...
4
votes
5answers
196 views
List which indices are expandable into both directions?
I was going to to write a game (it's called "Qwirkle" if you ever heard of it) in which a 2-dimensional game field stores the position of stones which the players have put into it. The first player ...
3
votes
1answer
63 views
Getting a list item by index
I've recently started using c# moving over from Java. I can't seem to find how to get a list item by index. In java to get the first item of the list it would be:
list1.get(0);
What is the ...
0
votes
5answers
82 views
Iteratively removing list items without altering indices, is using a 'DELETEME' string a sound approach?
I have a number of lists created by reading CSVs where each index represents a data point. So:
# names = ['name1','name2', 'name3', 'name4']
# data1 = ['1', '2', '3', '4']
# data2 = ['a', 'b', 'c', ...
0
votes
1answer
25 views
Return the number line a list of words is in?
I need help with a problem in which I create a function called index() which takes a file as a string and a list of words. The program will find the number lines that each word is in and return the ...
0
votes
1answer
29 views
Sorting with 2 keys and combining both
I have a file called "name_score_smiles.csv" which looks like this:
('VA00001', '64.11', '33.12', 'Cl.O=C1Nc2ccc(N)cc2C1')
('VA00002', '70.61', '54', 'CNCCC(=O)c1ccccc1')
('VA00003', '53.15', ...
0
votes
2answers
83 views
Changing an array value java
So I have set up an array 'generateUser' in a method called by my main. However, when i run it, it replaces the value the index with a cumulative i value. instead of every time the dectile 7, for ...
0
votes
5answers
453 views
list indices must be integers, not str
i have 2 types of lists: names, and scores and I'm trying to combine the scores so that all of the scores are combined into an existing list
I keep getting the "list indices must be integers, not ...
0
votes
1answer
27 views
Accessing a List element from another List — MATLAB
I have a question. I have an list
L1 - {'a','b','c'}
L2 - {'d','e','f'}
I am storing the L1 and L2 in a separate list, so that I can loop through it i.e
X - {'L1','L2'}
Now, I am not ...
1
vote
3answers
168 views
Python while loop popleft() - ERROR: Empty deque
I am looking for a more elegant solution to this loop. My deques are created dynamically and can vary in length. In the example below the list is only two items long and could be up to 3 items long. ...
-1
votes
1answer
47 views
Create link form external list [closed]
I need to create links on a lot of webpages. But those links are going to change quite offen. So I'd like to index them and then call them in my html page. This way if I need to change the url I can ...
0
votes
1answer
64 views
Get index of dictionary item in list by regexp
I have a list:
[
{
'avail': 'blabla',
'rep_main': 'qweqwe',
....
},
{
'avail': 'asdasd',
'rep_main': 'zxczxc',
....
},
...
]
I want to get the index of the item by ...
0
votes
2answers
130 views
Xlrd list index out of range
I'm just starting to explore Xlrd, and to be honest am pretty new to programming altogether, and have been working through some of their simple examples, and can't get this simple code to work:
...
2
votes
1answer
128 views
Groovy/Grails - Need to retrieve List index value
I need to retrieve the index position of each value in a list I have. I'm doing this so that I can display a gsp table with alternating row background colors. For example:
(list.indexVal % 2) == 1 ? ...
1
vote
0answers
10 views
Appending to lists for each index in a range in python?
Mind you, I'm pretty pitiful at using Python, but what I am trying to do is append three lists (one for each Myro light sensor - left, center, right) a total of 15 times, each time after having the ...
0
votes
2answers
24 views
Shell Programming: Access Element of List
It is my understanding that when writing a Unix shell program you can iterate through a string like a list with a for loop. Does this mean you can access elements of the string by their index as well?
...
4
votes
5answers
90 views
How to find the indices of items fulfilling some condition in List of int?
I have a list of int containing items { 10, 11, 23, 34, 56, 43 } and I want to find out the indices of all items which are greater than 23. These values can be any order so I do not want to sort them.
...
3
votes
3answers
58 views
Search a list for item(s)and return x number of surrounding items in python
I want to search a list for the occurence of a value (x) and return that value and a number, say 2, of the values above and below x in the index. Value x might appear in the list multiple time.
Input
...
2
votes
2answers
41 views
How do you find the negative index of a position if you know the index?
I have a string of variable length and I know the index position is 25. As it's variable in his length (>= 25), I need a way to locate the negative index of that same position for easier data ...
-1
votes
2answers
87 views
Beginner python list complehension, look up index
I have the following code, and I would like the index position of all the 1's:
mylist = ['0', '0', '1', '1', '0']
for item in mylist:
if item is '1':
print mylist.index(item)
Can ...
1
vote
2answers
83 views
how to find index of element in C with recursion
i have this, it checks if element is in list or not, but how get the index of element ?
// function that check if element is in list
int checklist(struct list *my_list, int n) {
while (my_list != ...
2
votes
2answers
91 views
Python: Index Error for 3D list
I've never worked with 2D or 3D arrays before but i'm trying to make a maze.
In my snippet, squares is a list with each instance of a cell (so in a 3x4 maze, there would be 12 instances in squares)
I ...
2
votes
2answers
89 views
Python: list inside a list index out of range error
I'm getting an error when trying to append values to a list inside of a list. What am I doing wrong?
xRange = 4
yRange = 3
baseList = []
values = []
count = 0
#make a list of 100 values
for i in ...
0
votes
1answer
125 views
how do I sort an array in C#?
I have this code for displaying a list from an array:
<table cellpadding="0" cellspacing="5" border="0" class="listTable">
@foreach(var row in list){
<tr>
...
1
vote
1answer
125 views
Hibernate Mapping List - Index
Hi I have problem with my hibernate. When i try to save List to SQLite database it crashes on ID of object stored in the list ... in the database first element gets number 0. The first element of list ...
0
votes
0answers
85 views
Qt Error “Index out of Range”
This is an error I get when I try to compile my Qt Project:
ASSERT failure in QList::operator[]: "index out of range", file c:\QtSDK\Desktop\Qt\4.8.1\mingw\include/QtCore/qlist.h, line 477. Invalid ...
5
votes
5answers
84 views
What is the most efficient way to remove a group of indices from a list of numbers in Python 2.7?
So I was wondering how I can, using Python 2.7, most efficiently take a list of values used to represent indices like this: (but with a length of up to 250,000+)
indices = [2, 4, 5]
and remove that ...
0
votes
1answer
91 views
IndexError: list index out of range— Prime Factor Generator
I have a program that finds the prime factors of any number, n. When running it, I get an index error because the index is exceeding the limit (where the limit is sqrt(n)). I'm not sure why it exceeds ...




