Skip to content

Commit ea4b389

Browse files
authored
Update 02-basics.md
1 parent 04c63e0 commit ea4b389

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_episodes/02-basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ True
424424
If you need to refer to a specific element (character) in a string,
425425
you can do so by specifying the index of the character in `[]`
426426
you can also use indexing to select a substring of the string. In Python,
427-
indexes begin with `0` (see [Strings and Character Data in Python: String Indexing](https://realpython.com/python-strings/#string-indexing) for a visual).
427+
indexes begin with `0` (for a visual, please see [Strings and Character Data in Python: String Indexing](https://realpython.com/python-strings/#string-indexing) or [9.4. Index Operator: Working with the Characters of a String](https://runestone.academy/runestone/books/published/thinkcspy/Strings/IndexOperatorWorkingwiththeCharactersofaString.html)).
428428

429429
~~~
430430
myString = "The quick brown fox"

0 commit comments

Comments
 (0)