I'm taking an intro to python class online and the site is designed to auto-enter input() data into the program that you write to resolve various python logic problems.
Please see this page to see how the online class's tool uses input entries
For example the class randomly inputs the following:
30
centered
text
is
great
testing
is
great
for
python!
END
Obviously, I would have to convert the 30 to an int. How do I convert the rest into a usable list or array?
width = int(input())
lis = ['centered', 'text', 'is', 'great', 'END']