Fixed typo

This commit is contained in:
David Beazley
2020-05-29 09:00:40 -05:00
parent fc9f806d2c
commit 861bf23606

View File

@@ -203,7 +203,7 @@ is associated with the value on the right hand side, not name of the variable.
```python
height = 442 # An integer
height = 442 # Floating point
height = 442.0 # Floating point
height = 'Really tall' # A string
```