Introduction to Strings in Python

Table of Content Concatenation and Repetition Indexing and Slicing Operation Built-in String Methods In Python, Strings can be created by simply enclosing characters in quotes. Python does not support character types. These are treated as length-one strings, and are also considered as substrings. Substrings are immutable and can’t be changed once created. Strings are the ordered … Continue reading Introduction to Strings in Python