python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Split by coma the content of python list embedded in list
I need help in splitting by coma a content of a list that is inside a list, basically I have such data
[['Department of Computer Languages and Computing Sciences, University of Málaga, Málaga, Spain']...
Axton
Votes: 1
Answers: 1
How can I return a list of numbers from a given list that mod 0 a target number?
In my function modded(X,Y,Z), a list is generated based off of a given number Y and a given list of numbers Z. What I am trying to do is go through the list Z for each of its values and see if the cur...
Eris Cacigieri
Votes: 0
Answers: 1
Generate N number of Sublists from a List in Java
I have working with Java lists I want to generates sublist simply says how to partioning of list into N parts:
arr= new int [10];
for (int i = 1; i < arr.length; i++) {
arr[i] = i;
...
user607464
Votes: 0
Answers: 1
Python Sublists Remove Method
I have the following list of suubjects and grades I have named "gradebook"
gradebook list
I am attempting to remove the value 85 from the sublist [poetry, 85]
sublist
I can remove the sublis...
Arinze Onyiah
Votes: 0
Answers: 2