Here what I want is to accept user inputs they could be
Hello I am Ram
I am from pokhara
I need to go home
And my list should be:
a[[Hello I am Ram],[I am from pokhara],[I need to go home]]
What I tied is
a = []
for x in range(4):
a[i] = ([let for let in input('')])
as in How to accept user input in multi dimension list in Python?
a = [input('Enter line {}'.format(n)) for n in range(1, 4)]do what you want?