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)])
solved How to input a list in list in Python? [closed]
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)])
solved How to input a list in list in Python? [closed]