Fix duplicate input in ex2_5.md

This commit is contained in:
Poor4ever 2023-09-28 18:43:10 +08:00
parent afec76dd94
commit 73023e88a1

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)