get multiple lines from input python code example
Example 1: multiline input in python
print("Enter the array:\n")
userInput = input().splitlines()
print(userInput)
Example 2: multiple line input python
lines = []
while True:
line = input()
if line:
lines.append(line)
else:
break
text = '\n'.join(lines)