From 5273b60f6a31e3315b8be53e326f60c06420a721 Mon Sep 17 00:00:00 2001 From: Bradley Bickford Date: Thu, 15 Dec 2022 21:34:11 -0500 Subject: [PATCH] Trying to fix code formatting issues --- 4 - If Else and Logical Operators/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/4 - If Else and Logical Operators/README.md b/4 - If Else and Logical Operators/README.md index 20d7b6f..29315ac 100644 --- a/4 - If Else and Logical Operators/README.md +++ b/4 - If Else and Logical Operators/README.md @@ -3,10 +3,10 @@ ## What's this if/else nonsense? Sometimes, our programs need to make decisions, we need to do one thing if some condition is true, and something else if it's not. We use if/else statements to ask questions in our program so we can make decisions about what should happen. The format of an if statement starts off simple. -if (some condition): +`if (some condition): (DO STUFF IF CONDITION IS TRUE) else: - (DO STUFF IF CONDITION IS FALSE) + (DO STUFF IF CONDITION IS FALSE)` We can check different things to make different choices, neat. But what do we do if we need to ask a bunch of related questions in our program? That's were elif comes in.