Question 394: Which data type is assigned to a variable that contains a string?
tcs
wipro
infosys
general
aptitude
variables
python-programming
In Python, thestrdata type is used to represent strings of text. Strings are immutable sequences of Unicode characters. They are denoted by single quotes ('), double quotes ("), or triple quotes (''' or """) and can contain any Unicode character.Here are some examples of strings in Python:'Hello, IndiaBIX!' "This is a string." '''This is a multiline string.'''