Welcome to the lesson on Modifying Strings
Python has a set of built-in methods that you can use on strings.
Upper Case
Some Examples: The upper() method returns the string in upper case:
Lower Case
Some Examples: The lower() method returns the string in lower case:
Replace String
Some Examples: The replace() method replaces a string with another string:
Split String
Some Examples: The split() method returns a list where the text between the specified separator becomes the list items:
End of Modifying Strings
You have learned Modifying Strings in simple terms. Let's proceed on to Concatenate Variables.