I get a number (n) from user. Just
n = int(input())
After that, I have to to create n strings and get their values from user.
i = 0;
while (i < n):
word = input() # so here is my problem:
# i don't know how to create n different strings
i += 1
How to create n strings?
list.