Skip to content

Commit

Permalink
Update learning-to-code-with-python.md
Browse files Browse the repository at this point in the history
  • Loading branch information
alesanchezr authored Apr 19, 2024
1 parent 384a527 commit 445c9f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/lesson/learning-to-code-with-python.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. <br> |
|Undefined |Empty |When a variable has no assigned value, it remains undefined. |
Expand Down

0 comments on commit 445c9f6

Please sign in to comment.