• Python Lines

    Python Lines

    Python Lines Table Of Contents: What Are Python Lines ? Joining Multiple Lines To Form A Single Logic. Multiple Statements On A Single Line. (1) What Are Python Lines? A Python program is divided into a number of logical lines and every logical line is terminated by the token NEWLINE. A logical line is a collection of statements, that comes under a single logic implementation. Python interpreter searches for the ‘Newline’ token to find out where logic ends. Split a Logical line into multiple physical lines using Semicolon (;) and Join multiple physical lines into one logical line using ().

    Read More