How to print two lists side by side in Python

1 Answer

0 votes
lst1 = [1, 2, 3, 5] 
lst2 = [8, 9, 7] 
  
print(lst1, lst2) 

 
 
 
'''
run:
 
[1, 2, 3, 5] [8, 9, 7]
 
'''

 



answered Aug 27, 2021 by avibootz
...