DEV Community

Discussion on: How to create dictionary with two lists in Python

Collapse
 
rupen4678 profile image
rupen4678

just

lists

first = [ ]
second = [ ]

depends how you want it

dic = {
'firstList': first,
'secondList': second,
}