Everything is an Object in Python, hence even String is treated as an object in Python.
The sequence of characters is called String. A character can be anything like symbols, alphabets, numbers etc. The computer doesn’t understand any of these characters or Strings, rather it understands only binary numbers i.e. 0’s and 1’s.
We call this method as encoding and the reverse process is called decoding, and encoding is done based on the ASCII.
Declaring a String
Strings are declared using double quotes (“ “) or single quotes (‘ ‘).