Expressions and Operators Flashcards
Review Major Concepts of Expressions and Operators in the Python Programming Language
1
Q
What is an ‘expression’ in the Python Programming Language?
A
An expression is a “phrase” of code, which Python evaluates to produce a value. The simplest expressions are literals and identifiers. You build other expressions by joining subexpressions with the operators and/or delimiters
2
Q
A