6. StringsΒΆ
- 6.1. Strings Revisited
- 6.2. A Collection Data Type
- 6.3. Operations on Strings
- 6.4. Index Operator: Working with the Characters of a String
- 6.5. String Methods
- 6.6. Length
- 6.7. The Slice Operator
- 6.8. String Comparison
- 6.9. Strings are Immutable
- 6.10. Traversal and the
for
Loop: By Item - 6.11. Traversal and the
for
Loop: By Index - 6.12. Traversal and the
while
Loop - 6.13. The
in
andnot in
operators - 6.14. The Accumulator Pattern with Strings
- 6.15. Turtles and Strings and L-Systems
- 6.16. Looping and Counting
- 6.17. A
find
function - 6.18. Optional parameters
- 6.19. Character classification
- 6.20. Summary
- 6.21. Glossary
- 6.22. Exercises