I am new to python, this is a basic question
How do you get a list of string as input from the user? I tried:
array = []
for i in range(0,4):
array[i] = input("Enter string")
This has an error. I know I am wrong. How do we get a list of strings as input?