python take two inputs in one line code example
Example 1: taking input of n integers in single line python in a list
arr = list(map(int, input().split()))
Example 2: multiple line input python
lines = []
while True:
line = input()
if line:
lines.append(line)
else:
break
text = '\n'.join(lines)