Just started an intro to scripting class using Python. My first lab is giving me problems with the EOFError: EOF when reading a line. This is everything I had entered as my input.
first_name = input('Kevin')
generic_location = input('Target')
whole_number = input('8')
plural_noun = input('socks')
print(first_name, 'went to', generic_location, 'to buy', whole_number, 'different types of',
plural_noun)
Not sure how to fix it??