From 445c9f608b8a971a9f641ffc4f87607263ff5073 Mon Sep 17 00:00:00 2001 From: Alejandro Sanchez Date: Fri, 19 Apr 2024 16:48:09 -0400 Subject: [PATCH] Update learning-to-code-with-python.md --- src/content/lesson/learning-to-code-with-python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/lesson/learning-to-code-with-python.md b/src/content/lesson/learning-to-code-with-python.md index 7c6816dba..48606a343 100644 --- a/src/content/lesson/learning-to-code-with-python.md +++ b/src/content/lesson/learning-to-code-with-python.md @@ -68,7 +68,7 @@ Variables can have different types of values: |**Data-Type** |**Possible Values** |**Description** | |:---------------|:--------------------|:-----------------| -|Booleano |True \| False |Booleans are intended for logical operations. If you ask a computer something like, "Is X equal to 3?" it will respond with a boolean (true or false). | +|Boolean |True \| False |Booleans are intended for logical operations. If you ask a computer something like, "Is X equal to 3?" it will respond with a boolean (true or false). | |String |Any string of characters |Strings are the only way we have to store words (sequences of characters). Note: strings must be enclosed in quotes. | |Number |Numbers only |Integers, negative numbers, decimals, floats, etc. All possible types of numbers.
| |Undefined |Empty |When a variable has no assigned value, it remains undefined. |