+ 1
How to write paragraph?
Please help.
7 Answers
+ 3
In html, use the <p> tag.
+ 4
Yes Jan Markus is right, your question is unclear so please clarify your question next time
but I will try to guess what you're referring to based on your profile.
Maybe you're reffering to this:
print("""
This is a paragraph.
This has indention in the first sentence.
And this paragraph is printed in console.
I used Three quotation marks to print multiple lines.
Please clarify your question next time.
""")
Or this:
"""
This is a docstring used to make
multiple line comments using three quotation marks.
And you can write paragraph you want with this and will be ignored by interpreter.
Use search bar next time. Happy Coding!
"""
+ 2
Thanks
+ 2
Ok bro. I know
+ 1
I want to print a paragraph in python 3. How to do that?
+ 1
M.M.Mishaf HASAN my answer is not related to Python 3.
+ 1
Do you mean something like this?
msg = "This is the first line.\nThis is the second line.\n\nContinue after a blank line."
print(msg)
You can insert newline characters "\n" into strings in order to get line breaks and paragraphs.