Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 58c9c3b

Browse files
author
arf
committed
fix typo in 02/07 line 14 'a~n~ list'
1 parent 70afdc9 commit 58c9c3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Notes/02_Working_with_data/07_Objects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Many operations in Python are related to *assigning* or *storing* values.
1111

1212
```python
1313
a = value # Assignment to a variable
14-
s[n] = value # Assignment to an list
14+
s[n] = value # Assignment to a list
1515
s.append(value) # Appending to a list
1616
d['key'] = value # Adding to a dictionary
1717
```

0 commit comments

Comments
 (0)