Home
Press ? for keyboard navigation
❮
String repetition and concatenation
String slice (instead of substr)
❯
[]
A character in a string
examples/strings/string_char.py
text
=
"Hello World"
a
=
text
[
0
]
print
(
a
)
# H
b
=
text
[
6
]
print
(
b
)
# W
Index (i)
Table of Contents (t)
Indexed keywords (k)
Chapter TOC (d)
Hide/Show (h)