Python - Statement (Instruction)

Card Puncher Data Processing

About

Language - Statement (Minimal unit of execution) in Python

Separator

; of end of line.

my_list = [3,2,1]
my_list = [3,2,1];





Discover More
Card Puncher Data Processing
Language - Code Block (Grouping of Statement)

An application is generally constructed from code blocks. A block is a piece of program text that group statement. It' is generally executed as a unit (excepted for SQL Block where block manipulation...
Card Puncher Data Processing
Python - Comments

The instructions that begin with a # (pound or hash) are single-line comments. A set of triple quotation marks design a multi-line comment.
Card Puncher Data Processing
Python Grammar - Code Block

in Python Python follows the Off-side_ruleoff-side rule. Instead of punctuation or keywords, it uses indentation to delimit program blocks of statement. (Pfff!) The block of code in Python is indented...



Share this page:
Follow us:
Task Runner