[Solved] How to input a list in list in Python? [closed]
[ad_1] May be this could help you out list=[] for i in range(0,N): name=raw_input(‘Enter Name:’) age=raw_input(‘Enter Age:’) list.append([name,int(age)]) [ad_2] solved How to input a list in list in Python? [closed]