String in python with example
A string is a sequence of characters. Strings can be created by enclosing characters inside a single quote or double quotes. Even triple quotes can be used in Python but are generally used to represent multiline strings and docstrings. For example: ‘Quescol’, “python”, “123”, “1”. …