🔍 What is a String ?
A string in Python is an immutable sequence of Unicode characters used to represent text. It’s defined using single, double, or triple quotes, like "hello" or 'world'.
In Python, assigning a string looks like:
s = "hello"
Here,...