Merge pull request #63 from Poor4ever/main

Fix duplicate input in ex2_5.md
This commit is contained in:
David Beazley
2024-07-31 10:39:26 -05:00
committed by GitHub

View File

@@ -60,7 +60,6 @@ and adding a few more values to it:
```python
>>> row = { 'route': '22', 'date': '01/01/2001', 'daytype': 'U', 'rides': 7354 }
>>> sys.getsizeof(row)
>>> sys.getsizeof(row)
240
>>> row['a'] = 1
>>> sys.getsizeof(row)