String Manipulation in Python MCQs l Top 20 Python String Manipulation Questions and Answers

preview_player
Показать описание
String Manipulation in Python MCQs #python #pythonprogramming #pythontutorial
In Python, string manipulation refers to the process of modifying or manipulating strings, which are sequences of characters. Strings are immutable in Python, which means that once a string is created, it cannot be changed. However, you can create new strings by modifying existing strings.

There are several built-in string methods in Python that you can use for string manipulation, including:

1. len(): Returns the length of a string.
2. upper(): Converts a string to uppercase.
3. lower(): Converts a string to lowercase.
4. capitalize(): Capitalizes the first letter of a string.
5. replace(): Replaces a substring with another substring.
6. strip(): Removes whitespace from the beginning and end of a string.
7. split(): Splits a string into a list of substrings based on a delimiter.
Рекомендации по теме