fix(curriculum): fix typo of review-python-basics (#64269)

Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
This commit is contained in:
Gary Yeung
2025-12-02 20:16:33 +08:00
committed by GitHub
parent 8888231f71
commit 61f3363f23
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ dashedName: review-python-basics
## Variables
- **Declaring Variables**: To declare a variable, you start with the variable name followed by the assignment operator (`=`) and then the data type. This can be a number, string, boolean, etc. Here are some examples:
- **Declaring Variables**: To declare a variable, you start with the variable name followed by the assignment operator (`=`) and then the value. This can be a number, string, boolean, etc. Here are some examples:
```py
name = 'John Doe'

View File

@@ -18,7 +18,7 @@ dashedName: review-python
## Variables
- **Declaring Variables**: To declare a variable, you start with the variable name followed by the assignment operator (`=`) and then the data type. This can be a number, string, boolean, etc. Here are some examples:
- **Declaring Variables**: To declare a variable, you start with the variable name followed by the assignment operator (`=`) and then the value. This can be a number, string, boolean, etc. Here are some examples:
```py
name = 'John Doe'