Skip to content

Commit 702eed2

Browse files
Merge pull request #49249 from v-thpra/azure-triage-fix-1030534
Fix for Customer Feedback 1030784: Extend and append output is incorrect
2 parents eb02fd4 + 192522e commit 702eed2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

learn-pr/reactors/python-data-science/includes/8-list-object-methods.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ The output is:
149149
The output is:
150150

151151
```Output
152-
['Quinn', 'Jordan', 'Parker', 'Riley', [...]]
152+
['Quinn', 'Jordan', 'Parker', 'Riley', 'Quinn', 'Jordan', 'Parker', 'Riley']
153153
```
154154

155155
The next input is:
@@ -162,7 +162,7 @@ The output is:
162162
Here's the output:
163163

164164
```Output
165-
['Quinn', 'Jordan', 'Parker', 'Riley', 'Quinn', 'Jordan', 'Parker', 'Riley']
165+
['Quinn', 'Jordan', 'Parker', 'Riley', ['Quinn', 'Jordan', 'Parker', 'Riley']]
166166
```
167167

168168
</details>
@@ -172,4 +172,4 @@ The output is:
172172
***
173173

174174
> [!NOTE]
175-
> You can supply your own *lambda function* for the `sort()` method, for use in comparing items in a list. We'll cover lambda functions in a later unit.
175+
> You can supply your own *lambda function* for the `sort()` method, for use in comparing items in a list. We cover lambda functions in a later unit.

0 commit comments

Comments
 (0)