I want to accept new line input in python.
I am trying
s = input('''Enter the paragraph :''')
But when i input paragraph.. on the very first ENTER it stops taking further input lines.
So how to accept newline character as input in Python
and then how to print the paragraph as it is on the screen.?