diff --git a/source/ch4_conditionals.ptx b/source/ch4_conditionals.ptx index 1f99114..623587a 100644 --- a/source/ch4_conditionals.ptx +++ b/source/ch4_conditionals.ptx @@ -5,12 +5,15 @@ Conditionals
Using Conditional Statements in Java +

conditional statements Conditional statements in Python and Java are very similar. - In Python we have three patterns: + In Python we have three patterns.

- +
+ + Using the <c>if</c> Statement

shows how the simple if statement is written in Python.

@@ -50,7 +53,8 @@ if score >= 90: # Note the colon at the end of the line In Java, the parentheses around the condition are required because it is technically a function that evaluates to True or False.

- +
+ Using the <c>if</c> - <c>else</c> Statement