Skip to content

Commit 3f3a448

Browse files
authored
Fix Python Lesson 3 example
1 parent f0e6506 commit 3f3a448

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/lesson3/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,10 @@ many levels deep you can go before your code is too confusing:
131131
'chocolate'
132132

133133
cake_flavours[1]
134-
['chocolate cake', 'vanilla icing']
134+
['chocolate', 'vanilla']
135135

136136
cake_flavours[1][1]
137-
'vanilla icing'
137+
'vanilla'
138138

139139
There's a lot more things you can do with lists including concatenating,
140140
diffing, sorting, and (scary, but fun) subclassing. This is enough to get you

0 commit comments

Comments
 (0)