Please enable JavaScript.
Coggle requires JavaScript to display documents.
Making choices in Python, Conditional statement Adjust code from just…
Making choices in Python
-
Assignment operators
Python has a variety of useful assignment operators that help to speed up the workflow by reducing typing.
-
Error handling
Trace tables are used to trace all variables over the course of the program execution - every single set of data should be tested where possible.
Conditional statement Adjust code from just being a script to a decision making system based on received information.
Comparison operations < Less than, <= Less than or equal to, > Greater than, >= Greater than or equal to, == Equal, != Does not equal
-
Single equals (=) is to assign a value Double equals (==) compares two values. This can also work with letters (with uppercase taking priority).
-