A character in a string
- []
text = "Hello World"
a = text[0]
print(a) # H
b = text[6]
print(b) # W
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
text = "Hello World"
a = text[0]
print(a) # H
b = text[6]
print(b) # W