Skip to content

Commit 5613714

Browse files
Update P5- More on strings.md
1 parent f253b05 commit 5613714

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

P5- More on strings.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ It's done by writing the string name along with square brackets with the index.
3333
qoute = "A friend in need is a friend indeed."
3434
print("First element: " + qoute[0])
3535
print("Sixth element: " + qoute[5])
36-
print("Last element: " + qoute[35])
3736
print("Last element: " + qoute[-1])
3837
print("First element: " + qoute[-36])
3938
```

0 commit comments

Comments
 (0)