How to use zip to combine two ranges into a list in Python

2 Answers

0 votes
from itertools import *     

rn1 = range(5)        
rn2 = range(3)        

lst = list(zip(rn1, rn2))
print(lst)

    
    
    
'''
run:

[(0, 0), (1, 1), (2, 2)]

'''

 



answered May 20, 2019 by avibootz
0 votes
from itertools import *     

rn1 = range(5)        
rn2 = range(3)        

lst = list(zip_longest(rn1, rn2))
print(lst)

    
    
    
'''
run:

[(0, 0), (1, 1), (2, 2), (3, None), (4, None)]

'''

 



answered May 20, 2019 by avibootz
...