mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user