fix(curriculum): remove complex data type in python data types lesson (#64678)

Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
This commit is contained in:
Diem-Trang Pham
2025-12-24 07:16:49 -06:00
committed by GitHub
parent bc3196b49c
commit 66f3571257
2 changed files with 0 additions and 14 deletions
@@ -77,13 +77,6 @@ my_float_var = 4.50
print('Float:', my_float_var) # Float: 4.5
```
- **Complex**: A number with a real and imaginary part:
```py
my_complex_var = 3 + 4j
print('Complex:', my_complex_var) # Complex: (3+4j)
```
- **String**: A sequence of characters wrapped in quotes:
```py
@@ -77,13 +77,6 @@ my_float_var = 4.50
print('Float:', my_float_var) # Float: 4.5
```
- **Complex**: A number with a real and imaginary part:
```py
my_complex_var = 3 + 4j
print('Complex:', my_complex_var) # Complex: (3+4j)
```
- **String**: A sequence of characters wrapped in quotes:
```py