Tools, FAQ, Tutorials:
Multi-line Statements in Python Code
How to enter a single statement in multiple lines in Python Code?
✍: FYIcenter.com
By default, Python uses the end of line to end a statement.
So normally, you enter a statement in a single line.
But if you have a very long statement, you can enter a single statement in multiple lines in two ways:
1. Explicit line breaks - Using the backward slash character "\" to break a long statement into multiple lines. For example:
>>> 1 + 2 + 3 + 4 + \ ... 5 + 6 + 7 + 8 36
Note that in the Interactive mode, Python changes the prompt to "..." if the statement is not completed in the previous line.
2. Implicit line breaks - Breaking lines within parentheses or triple quotes. Python automatically continues to subsequent lines searching for the closing parenthesis or ending quotes. For example:
>>> (1 + 2 + 3 + 4 + ... 5 + 6 + 7 + 8) 36 >>> """Welcome ... to FYIcenter.com ... """ 'Welcome\nto FYIcenter.com\n'
⇐ Basic Structure of Python Code
2023-06-12, ∼2029🔥, 0💬
Popular Posts:
How to use the "Ctrl-p Ctrl-q" sequence to detach console from the TTY terminal of container's runni...
How to create a "Sign-up or Sign-in" user flow policy in my Azure AD B2C directory? If you want to b...
What are "*..." and "**..." Wildcard Parameters in Function Definitions? If you want to define a fun...
How To Read Data from Keyboard (Standard Input) in PHP? If you want to read data from the standard i...
What is Azure API Management Gateway? Azure API Management Gateway is the Azure Web server that serv...