Glossaire

Anaconda
Command line
Dictionary
Function
Immutable
List
List Comprehension
method
Package
Respectively
Floating point representation
Syntax

Sélectionnez l'un des mots clés à gauche…

Programming in PythonConditionals

Temps de lecture: ~10 min

Consider a simple computational task performed by commonplace software, like highlighting the rows in a spreadsheet which have a value larger than 10 in the third column. We need a new programming language feature to do this, because we need to conditionally execute code (namely, the code which highlights a row) based on the ???

value returned by the comparison operator. Python provides if statements for this purpose.

Conditionals

We can use an if statement to specify different blocks to be executed depending on the value of a boolean expression. For example, the following function calculates the sign of the input value x.

Conditional expressions can be written using ternary conditional «truevalue» if «condition» else «falsevalue». For example, the following version of the sgn function returns the same values as the one above except when x == 0.

Exercises

Exercise
Can the else part of an if statement be omitted? ???

Try running the example below.

Exercise
Write a function called my_abs which computes the absolute value of its input. Replace the keyword pass below with an appropriate block of code.

Exercise
Write a function which returns the quadrant number (1, 2, 3, or 4) in which the point (x,y) is located. Recall that the quadrants are numbered counter-clockwise: the northeast quadrant is quadrant 1, the northwest quadrant is 2, and so on. For convenience, you may assume that both x and y are nonzero.

Consider nesting if...else blocks inside of an if...else block.

Solution. Here's an example solution:

Bruno Bruno