Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit caded46

Browse files
Merge pull request #30 from hexbreak/patch-10
Update README.md
2 parents 1052aa7 + d685462 commit caded46

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

‎exercises/11-Nested_list/README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,13 @@ It is possible to find a list comprised of other lists (it is called a two-dimen
55

66
In this example, we have a list of coordinates that you can access by doing the following:
77

8-
//longitude = []
9-
// for loop in coordinate longitude
10-
longitude = coordinatesList[0][1];
8+
```py
9+
longitude = []
10+
11+
for loop in coordinate longitude
1112

13+
longitude = coordinatesList[0][1];
14+
```
1215

1316
# 📝Instructions:
1417
Loop through the list printing only the longitudes.
@@ -21,4 +24,4 @@ The result should be something like this:
2124
```
2225

2326
💡Hint:
24-
Remember the index of the position 1 is list[0]
27+
-Remember the index of the position 1 is list[0]

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /