I want to write a program that gets multiple line input and work with it line by line. Why isn't there any function like raw_input
in Python 3?
input
does not allow the user to put lines separated by newline (Enter). It prints back only the first line.
Can it be stored in a variable or even read it to a list?