String slice (instead of substr)
- slice
- substr
- [:]
- :
text = "Hello World"
b = text[1:4]
print(b) # ell
print(text[2:]) # llo World
print(text[:2]) # He
start = 1
end = 4
print(text[start:end]) # ell
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"
b = text[1:4]
print(b) # ell
print(text[2:]) # llo World
print(text[:2]) # He
start = 1
end = 4
print(text[start:end]) # ell