# Operators are symbols used to perform operations on values. # They help us compare values and make decisions in a program. # Types of Operators covered here: # 2. Logical Operators (and, or) # Task ...
# A string is a group of characters. # Strings are written inside single (' ') or double (" ") quotes. # Example: 'Hello', "Python". # Indexing means accessing a specific character from a string using ...