What is a String in Python? A string is a sequence of characters enclosed in single quotes ' ', double quotes " ", or triple quotes ''' ''' or """ """. python Copy ...
# string is immutable and string is a data type in python . # string is a sequence of character enclosed in quotes. # we can primarly write a string in three way (('') - single quoted string ,(" ") - ...