Saved Bookmarks
| 1. |
What is String? |
|
Answer» String is a data type in python, which is used to handle array of characters. String is a sequence of Unicode characters that may be a combination of letters, numbers, or special symbols enclosed within single, double or even triple quotes. Example: ‘Welcome to learning Python’ “Welcome to learning Python” “Welcome to learning Python” |
|