I am just learning python and have almost no experience and I have hit a bit of a problem. I am learning to edit text files and I am trying to see if I can copy multi-line text into the input() function when you run it, or if you can't do that. Also I am using Replit, if that's important.
Here is my code:
example = input("Some multi-line text: ")
print(example)
I have also tried using:
example = input("""Some multi-line text: """)
print(example)
but it didn't work either.
Then I tried typing \n
into shell (remember I am using Replit).
That also didn't work, it just printed: example \n example