How to make sublist form given list in python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to make sublist form given list in python

rollno =[1,2,3,4,5] name = ['devang', 'pratham', 'dev', 'rohit', 'daxesh'] how can i make sublist which contains data =[ [1,'devang'] ,[2,'prathan']......etc

3rd Mar 2020, 5:32 PM
Devang H Baroliya
Devang H Baroliya - avatar
10 Answers
+ 6
sublist = list(zip(rollno, name)) With that technique, the inner containers will be tuples, but if you insist on lists, you can write: sublist = [[a, b] for a, b in zip(rollno, name)]
3rd Mar 2020, 5:42 PM
HonFu
HonFu - avatar
+ 4
subdict = {a: b for a, b in zip(rollno, name)}
3rd Mar 2020, 6:03 PM
HonFu
HonFu - avatar
+ 3
Zip takes an arbitrary number of iterables and constructs a plan for how they will be mixed. You can for example take lists, strings, or whatever, and zip will connect the 1st, 2nd, 3rd, and so on items to tuples and hand them out. As soon as one of them ends, it will stop, so you won't get an error. So if for example you write... for t in zip('123', 'abc'): print(t) ... you'll get the output: ('1', 'a') ('2', 'b') ('3', 'c')
3rd Mar 2020, 6:57 PM
HonFu
HonFu - avatar
+ 2
You could: Create an empty list. Iterate i from 0 to 5. In each iteration you'd create a list of 2 items: rollno[i] and name[i] And append the list to the "empty list".
3rd Mar 2020, 5:42 PM
Seb TheS
Seb TheS - avatar
+ 2
You could: Create an empty dictionary. Iterate i from 0 to 5. In each iteration you'd assing the "empty dictionary" index: rollno[i] to: name[i]
3rd Mar 2020, 6:02 PM
Seb TheS
Seb TheS - avatar
+ 2
[[rollno[i], name[i]] for i in range(rollno)]
3rd Mar 2020, 10:12 PM
Shen Bapiro
Shen Bapiro - avatar
3rd Mar 2020, 5:58 PM
Devang H Baroliya
Devang H Baroliya - avatar
+ 1
https://code.sololearn.com/cD5GD3bMI4k9/?ref=app
3rd Mar 2020, 6:16 PM
Devang H Baroliya
Devang H Baroliya - avatar
0
If i want to write this in dictionary form how can i write ???
3rd Mar 2020, 6:00 PM
Devang H Baroliya
Devang H Baroliya - avatar
0
Sir can you explain how this zip function actually works???
3rd Mar 2020, 6:06 PM
Devang H Baroliya
Devang H Baroliya - avatar