I am asking the user to input some ID numbers, but they will only be able to paste them into the program horizontally.
print("Please cut and paste your ID numbers:")
User input:
12345
54321
99999
I want python to perform this function on all the numbers:
print ('s'+(user input)+'@'+'students.xisd.org')
This is the output that I want:
s12345@student.xisd.org
s54321@student.xisd.org
s99999@student.xisd.org
I don't know how to allow python to accept several lines of horizontal input and give the same outputs.