Skip to content

Commit 6f7e990

Browse files
committed
Remove misplaced prompt in Introduction/Lists
1 parent dd47473 commit 6f7e990

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Notes/01_Introduction/05_Lists.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ t = sorted(s) # s unchanged, t holds sorted values
157157
>>> nums * 2
158158
[1, 2, 3, 4, 5, 1, 2, 3, 4, 5]
159159
>>> nums + [10, 11, 12, 13, 14]
160-
[1, 2, 3, 4, 5, 10, 11, 12, 13, 14] >>>
160+
[1, 2, 3, 4, 5, 10, 11, 12, 13, 14]
161161
```
162162

163163
Specifically, lists don't represent vectors/matrices as in MATLAB, Octave, R, etc.

0 commit comments

Comments
 (0)