I used the Search Function to no avail on this. Let us say I want to write a function which echoes out what we input, like so:
def echo (p):
return p
But what if we wanted to enter an input that took more than one line? For example:
INPUT
2
0
1
3
OUTPUT
2
0
1
3
I could just use something outside of a function as shown here, but what if I wanted to use it as a function?
Thanks in advance!